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 App\Exceptions\Common; use RuntimeException; use Throwable; class TooMa..
Decoded Output download
<?php
namespace App\Exceptions\Common;
use RuntimeException;
use Throwable;
class TooManyEmailsSent extends RuntimeException
{
public function __construct(string $message = '', int $code = 429, Throwable|null $previous = null)
{
parent::__construct($message, $code, $previous);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace App\Exceptions\Common;
use RuntimeException;
use Throwable;
class TooManyEmailsSent extends RuntimeException
{
public function __construct(string $message = '', int $code = 429, Throwable|null $previous = null)
{
parent::__construct($message, $code, $previous);
}
}
Function Calls
None |
Stats
MD5 | 3c0931a63d0d5c4c9713a022531335ba |
Eval Count | 0 |
Decode Time | 129 ms |