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 Rmunate\Utilities\Exceptions; use Exception; use Throwable; class Spell..
Decoded Output download
<?php
namespace Rmunate\Utilities\Exceptions;
use Exception;
use Throwable;
class SpellNumberExceptions extends Exception
{
/**
* Static method to throw the exception from the calling class.
*
* @param string $message The exception message.
* @param int $code The exception code (optional).
* @param Throwable|null $previous The previous exception (optional).
*
* @throws SpellNumberExceptions
*
* @return SpellNumberExceptions An instance of SpellNumberExceptions.
*/
public static function create($message, $code = 0, Throwable $previous = null)
{
return new self(
"\Rmunate\Utilities\SpellNumber::class - {$message} - See https://rmunate.github.io/SpellNumber/",
$code,
$previous
);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Rmunate\Utilities\Exceptions;
use Exception;
use Throwable;
class SpellNumberExceptions extends Exception
{
/**
* Static method to throw the exception from the calling class.
*
* @param string $message The exception message.
* @param int $code The exception code (optional).
* @param Throwable|null $previous The previous exception (optional).
*
* @throws SpellNumberExceptions
*
* @return SpellNumberExceptions An instance of SpellNumberExceptions.
*/
public static function create($message, $code = 0, Throwable $previous = null)
{
return new self(
"\Rmunate\Utilities\SpellNumber::class - {$message} - See https://rmunate.github.io/SpellNumber/",
$code,
$previous
);
}
}
Function Calls
None |
Stats
MD5 | 92d2662f0ad988697d5edf2dc34e905c |
Eval Count | 0 |
Decode Time | 114 ms |