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\Platforms\Exception; use LogicEx..
Decoded Output download
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Platforms\Exception;
use LogicException;
use function sprintf;
/** @psalm-immutable */
final class NotSupported extends LogicException implements PlatformException
{
public static function new(string $method): self
{
return new self(sprintf('Operation "%s" is not supported by platform.', $method));
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Platforms\Exception;
use LogicException;
use function sprintf;
/** @psalm-immutable */
final class NotSupported extends LogicException implements PlatformException
{
public static function new(string $method): self
{
return new self(sprintf('Operation "%s" is not supported by platform.', $method));
}
}
Function Calls
None |
Stats
MD5 | 41157179b4af3d0963a060d7b477f896 |
Eval Count | 0 |
Decode Time | 101 ms |