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\DBAL\Schema\Exception; use Doctrine\D..
Decoded Output download
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Schema\Exception;
use Doctrine\DBAL\Schema\SchemaException;
use LogicException;
use function sprintf;
/** @psalm-immutable */
final class IndexDoesNotExist extends LogicException implements SchemaException
{
public static function new(string $indexName, string $table): self
{
return new self(sprintf('Index "%s" does not exist on table "%s".', $indexName, $table));
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Schema\Exception;
use Doctrine\DBAL\Schema\SchemaException;
use LogicException;
use function sprintf;
/** @psalm-immutable */
final class IndexDoesNotExist extends LogicException implements SchemaException
{
public static function new(string $indexName, string $table): self
{
return new self(sprintf('Index "%s" does not exist on table "%s".', $indexName, $table));
}
}
Function Calls
None |
Stats
MD5 | e7550d88def889d31d779c4225987a2e |
Eval Count | 0 |
Decode Time | 100 ms |