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 Pagekit\Kernel\Exception; class UnauthorizedException extends HttpExcept..
Decoded Output download
<?php
namespace Pagekit\Kernel\Exception;
class UnauthorizedException extends HttpException
{
/**
* {@inheritdoc}
*/
public function __construct($message = null, $previous = null, $code = 401)
{
parent::__construct($message ?: 'Unauthorized', $previous, $code);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Pagekit\Kernel\Exception;
class UnauthorizedException extends HttpException
{
/**
* {@inheritdoc}
*/
public function __construct($message = null, $previous = null, $code = 401)
{
parent::__construct($message ?: 'Unauthorized', $previous, $code);
}
}
Function Calls
None |
Stats
MD5 | 5bb04742f101d24d13a615973af31d64 |
Eval Count | 0 |
Decode Time | 73 ms |