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); namespace Doctrine\DBAL\Tests\Types; use DateTime; use D..
Decoded Output download
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Types;
use DateTime;
use Doctrine\DBAL\Types\ConversionException;
use Doctrine\DBAL\Types\DateTimeTzType;
class DateTimeTzTest extends BaseDateTypeTestCase
{
protected function setUp(): void
{
$this->type = new DateTimeTzType();
parent::setUp();
$this->platform->method('getDateTimeTzFormatString')
->willReturn('Y-m-d H:i:s');
}
public function testDateTimeConvertsToDatabaseValue(): void
{
$date = new DateTime('1985-09-01 10:10:10');
$expected = $date->format($this->platform->getDateTimeTzFormatString());
$actual = $this->type->convertToDatabaseValue($date, $this->platform);
self::assertEquals($expected, $actual);
}
public function testDateTimeConvertsToPHPValue(): void
{
// Birthday of jwage and also birthday of Doctrine. Send him a present ;)
$date = $this->type->convertToPHPValue('1985-09-01 00:00:00', $this->platform);
self::assertInstanceOf(DateTime::class, $date);
self::assertEquals('1985-09-01 00:00:00', $date->format('Y-m-d H:i:s'));
}
public function testInvalidDateFormatConversion(): void
{
$this->expectException(ConversionException::class);
$this->type->convertToPHPValue('abcdefg', $this->platform);
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Types;
use DateTime;
use Doctrine\DBAL\Types\ConversionException;
use Doctrine\DBAL\Types\DateTimeTzType;
class DateTimeTzTest extends BaseDateTypeTestCase
{
protected function setUp(): void
{
$this->type = new DateTimeTzType();
parent::setUp();
$this->platform->method('getDateTimeTzFormatString')
->willReturn('Y-m-d H:i:s');
}
public function testDateTimeConvertsToDatabaseValue(): void
{
$date = new DateTime('1985-09-01 10:10:10');
$expected = $date->format($this->platform->getDateTimeTzFormatString());
$actual = $this->type->convertToDatabaseValue($date, $this->platform);
self::assertEquals($expected, $actual);
}
public function testDateTimeConvertsToPHPValue(): void
{
// Birthday of jwage and also birthday of Doctrine. Send him a present ;)
$date = $this->type->convertToPHPValue('1985-09-01 00:00:00', $this->platform);
self::assertInstanceOf(DateTime::class, $date);
self::assertEquals('1985-09-01 00:00:00', $date->format('Y-m-d H:i:s'));
}
public function testInvalidDateFormatConversion(): void
{
$this->expectException(ConversionException::class);
$this->type->convertToPHPValue('abcdefg', $this->platform);
}
}
Function Calls
None |
Stats
MD5 | 0fd14be732ad6008e9605282f1dbf96c |
Eval Count | 0 |
Decode Time | 112 ms |