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