Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare(strict_types=1); /** * This file is part of the Carbon package. * * (c)..
Decoded Output download
<?php
declare(strict_types=1);
/**
* This file is part of the Carbon package.
*
* (c) Brian Nesbitt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Tests\CarbonInterval;
use Carbon\Carbon;
use Carbon\CarbonInterval;
use Carbon\Translator;
use InvalidArgumentException;
use Tests\AbstractTestCase;
class GettersTest extends AbstractTestCase
{
public function testGettersThrowExceptionOnUnknownGetter()
{
$this->expectExceptionObject(new InvalidArgumentException(
'Unknown getter \'doesNotExit\'',
));
/** @var mixed $interval */
$interval = CarbonInterval::year();
$interval->doesNotExit;
}
public function testGet()
{
$ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);
$this->assertSame(4, $ci->get('years'));
}
public function testYearsGetter()
{
$ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);
$this->assertSame(4, $ci->years);
}
public function testMonthsGetter()
{
$ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);
$this->assertSame(5, $ci->months);
}
public function testWeeksGetter()
{
$ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);
$this->assertSame(6, $ci->weeks);
}
public function testDayzExcludingWeeksGetter()
{
$ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);
$this->assertSame(5, $ci->daysExcludeWeeks);
$this->assertSame(5, $ci->dayzExcludeWeeks);
}
public function testDayzGetter()
{
$ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);
$this->assertSame(6 * 7 + 5, $ci->dayz);
}
public function testHoursGetter()
{
$ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);
$this->assertSame(8, $ci->hours);
}
public function testMinutesGetter()
{
$ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);
$this->assertSame(9, $ci->minutes);
}
public function testSecondsGetter()
{
$ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);
$this->assertSame(10, $ci->seconds);
}
public function testStartAndEnd()
{
$interval = Carbon::parse('2020-08-10')->diff('2020-09-30');
$this->assertSame('2020-08-10 00:00:00', $interval->start()->format('Y-m-d H:i:s'));
$this->assertSame('2020-09-30 00:00:00', $interval->end()->format('Y-m-d H:i:s'));
$interval = CarbonInterval::fromString('1 month 20 days');
$this->assertNull($interval->start());
$this->assertNull($interval->end());
}
public function testDebugInfo()
{
$ci = CarbonInterval::create(4, 0, 6, 5, 0, 9, 10);
$this->assertSame([
'y' => 4,
'd' => 47,
'i' => 9,
's' => 10,
], $ci->__debugInfo());
$ci->locale('it_IT');
$this->assertSame([
'localTranslator' => Translator::get('it_IT'),
'y' => 4,
'd' => 47,
'i' => 9,
's' => 10,
], $ci->__debugInfo());
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
/**
* This file is part of the Carbon package.
*
* (c) Brian Nesbitt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Tests\CarbonInterval;
use Carbon\Carbon;
use Carbon\CarbonInterval;
use Carbon\Translator;
use InvalidArgumentException;
use Tests\AbstractTestCase;
class GettersTest extends AbstractTestCase
{
public function testGettersThrowExceptionOnUnknownGetter()
{
$this->expectExceptionObject(new InvalidArgumentException(
'Unknown getter \'doesNotExit\'',
));
/** @var mixed $interval */
$interval = CarbonInterval::year();
$interval->doesNotExit;
}
public function testGet()
{
$ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);
$this->assertSame(4, $ci->get('years'));
}
public function testYearsGetter()
{
$ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);
$this->assertSame(4, $ci->years);
}
public function testMonthsGetter()
{
$ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);
$this->assertSame(5, $ci->months);
}
public function testWeeksGetter()
{
$ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);
$this->assertSame(6, $ci->weeks);
}
public function testDayzExcludingWeeksGetter()
{
$ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);
$this->assertSame(5, $ci->daysExcludeWeeks);
$this->assertSame(5, $ci->dayzExcludeWeeks);
}
public function testDayzGetter()
{
$ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);
$this->assertSame(6 * 7 + 5, $ci->dayz);
}
public function testHoursGetter()
{
$ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);
$this->assertSame(8, $ci->hours);
}
public function testMinutesGetter()
{
$ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);
$this->assertSame(9, $ci->minutes);
}
public function testSecondsGetter()
{
$ci = CarbonInterval::create(4, 5, 6, 5, 8, 9, 10);
$this->assertSame(10, $ci->seconds);
}
public function testStartAndEnd()
{
$interval = Carbon::parse('2020-08-10')->diff('2020-09-30');
$this->assertSame('2020-08-10 00:00:00', $interval->start()->format('Y-m-d H:i:s'));
$this->assertSame('2020-09-30 00:00:00', $interval->end()->format('Y-m-d H:i:s'));
$interval = CarbonInterval::fromString('1 month 20 days');
$this->assertNull($interval->start());
$this->assertNull($interval->end());
}
public function testDebugInfo()
{
$ci = CarbonInterval::create(4, 0, 6, 5, 0, 9, 10);
$this->assertSame([
'y' => 4,
'd' => 47,
'i' => 9,
's' => 10,
], $ci->__debugInfo());
$ci->locale('it_IT');
$this->assertSame([
'localTranslator' => Translator::get('it_IT'),
'y' => 4,
'd' => 47,
'i' => 9,
's' => 10,
], $ci->__debugInfo());
}
}
Function Calls
None |
Stats
MD5 | 31dff364f2312fc39cc0c7b800492a24 |
Eval Count | 0 |
Decode Time | 196 ms |