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 Doctrine\DBAL\P..
Decoded Output download
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Types;
use Doctrine\DBAL\ParameterType;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Types\AsciiStringType;
use PHPUnit\Framework\TestCase;
class AsciiStringTest extends TestCase
{
private AsciiStringType $type;
protected function setUp(): void
{
$this->type = new AsciiStringType();
}
public function testReturnCorrectBindingType(): void
{
self::assertEquals($this->type->getBindingType(), ParameterType::ASCII);
}
public function testDelegateToPlatformForSqlDeclaration(): void
{
$columnDefinitions = [
['length' => 12, 'fixed' => true],
['length' => 14],
];
foreach ($columnDefinitions as $column) {
$platform = $this->createMock(AbstractPlatform::class);
$platform->expects(self::once())
->method('getAsciiStringTypeDeclarationSQL')
->with($column);
$this->type->getSQLDeclaration($column, $platform);
}
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Types;
use Doctrine\DBAL\ParameterType;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Types\AsciiStringType;
use PHPUnit\Framework\TestCase;
class AsciiStringTest extends TestCase
{
private AsciiStringType $type;
protected function setUp(): void
{
$this->type = new AsciiStringType();
}
public function testReturnCorrectBindingType(): void
{
self::assertEquals($this->type->getBindingType(), ParameterType::ASCII);
}
public function testDelegateToPlatformForSqlDeclaration(): void
{
$columnDefinitions = [
['length' => 12, 'fixed' => true],
['length' => 14],
];
foreach ($columnDefinitions as $column) {
$platform = $this->createMock(AbstractPlatform::class);
$platform->expects(self::once())
->method('getAsciiStringTypeDeclarationSQL')
->with($column);
$this->type->getSQLDeclaration($column, $platform);
}
}
}
Function Calls
None |
Stats
MD5 | d26584a48cd0c9b242e25374ff383976 |
Eval Count | 0 |
Decode Time | 91 ms |