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\Mysql; use Doctrine\DBAL\Platforms\AbstractPl..
Decoded Output download
<?php
namespace TCG\Voyager\Database\Types\Mysql;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use TCG\Voyager\Database\Types\Type;
class TimeStampType extends Type
{
public const NAME = 'timestamp';
public function getSQLDeclaration(array $field, AbstractPlatform $platform)
{
if (isset($field['default'])) {
return 'timestamp';
}
return 'timestamp null';
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace TCG\Voyager\Database\Types\Mysql;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use TCG\Voyager\Database\Types\Type;
class TimeStampType extends Type
{
public const NAME = 'timestamp';
public function getSQLDeclaration(array $field, AbstractPlatform $platform)
{
if (isset($field['default'])) {
return 'timestamp';
}
return 'timestamp null';
}
}
Function Calls
None |
Stats
MD5 | a3aa0379286a3d34451d84fb470e6342 |
Eval Count | 0 |
Decode Time | 92 ms |