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\ORM\Mapping\Exception; use Doctrine\O..
Decoded Output download
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Mapping\Exception;
use Doctrine\ORM\Exception\ORMException;
use LogicException;
final class UnknownGeneratorType extends LogicException implements ORMException
{
public static function create(int $generatorType): self
{
return new self('Unknown generator type: ' . $generatorType);
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Mapping\Exception;
use Doctrine\ORM\Exception\ORMException;
use LogicException;
final class UnknownGeneratorType extends LogicException implements ORMException
{
public static function create(int $generatorType): self
{
return new self('Unknown generator type: ' . $generatorType);
}
}
Function Calls
None |
Stats
MD5 | 6d1e1e8b9208727e52a723d4935ed40a |
Eval Count | 0 |
Decode Time | 100 ms |