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 namespace TCG\Voyager\Database\Types\Postgresql; use Doctrine\DBAL\Platforms\Abstr..
Decoded Output download
<?php
namespace TCG\Voyager\Database\Types\Postgresql;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use TCG\Voyager\Database\Types\Type;
class UuidType extends Type
{
public const NAME = 'uuid';
public function getSQLDeclaration(array $field, AbstractPlatform $platform)
{
return 'uuid';
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace TCG\Voyager\Database\Types\Postgresql;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use TCG\Voyager\Database\Types\Type;
class UuidType extends Type
{
public const NAME = 'uuid';
public function getSQLDeclaration(array $field, AbstractPlatform $platform)
{
return 'uuid';
}
}
Function Calls
None |
Stats
MD5 | 786c3b79b441b5f6f9fcb65afe4057dc |
Eval Count | 0 |
Decode Time | 85 ms |