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 FloatType extends Type
{
public const NAME = 'float';
public function getSQLDeclaration(array $field, AbstractPlatform $platform)
{
return 'float';
}
}
?>
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 FloatType extends Type
{
public const NAME = 'float';
public function getSQLDeclaration(array $field, AbstractPlatform $platform)
{
return 'float';
}
}
Function Calls
None |
Stats
MD5 | 991e5c46383b88459e634c184e8a8907 |
Eval Count | 0 |
Decode Time | 82 ms |