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\Platforms\SQLite; use Doct..
Decoded Output download
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Platforms\SQLite;
use Doctrine\DBAL\Platforms\SQLite\Comparator;
use Doctrine\DBAL\Platforms\SQLitePlatform;
use Doctrine\DBAL\Tests\Schema\AbstractComparatorTestCase;
class ComparatorTest extends AbstractComparatorTestCase
{
protected function setUp(): void
{
$this->comparator = new Comparator(new SQLitePlatform());
}
public function testCompareChangedBinaryColumn(): void
{
self::markTestSkipped('SQLite maps binary columns to BLOB regardless of the length and it is fixed');
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Platforms\SQLite;
use Doctrine\DBAL\Platforms\SQLite\Comparator;
use Doctrine\DBAL\Platforms\SQLitePlatform;
use Doctrine\DBAL\Tests\Schema\AbstractComparatorTestCase;
class ComparatorTest extends AbstractComparatorTestCase
{
protected function setUp(): void
{
$this->comparator = new Comparator(new SQLitePlatform());
}
public function testCompareChangedBinaryColumn(): void
{
self::markTestSkipped('SQLite maps binary columns to BLOB regardless of the length and it is fixed');
}
}
Function Calls
None |
Stats
MD5 | 7b10d123ed833156f3c8eac876339757 |
Eval Count | 0 |
Decode Time | 117 ms |