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 Illuminate\Encryption; use RuntimeException; class MissingAppKeyExcepti..
Decoded Output download
<?php
namespace Illuminate\Encryption;
use RuntimeException;
class MissingAppKeyException extends RuntimeException
{
/**
* Create a new exception instance.
*
* @param string $message
* @return void
*/
public function __construct($message = 'No application encryption key has been specified.')
{
parent::__construct($message);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Illuminate\Encryption;
use RuntimeException;
class MissingAppKeyException extends RuntimeException
{
/**
* Create a new exception instance.
*
* @param string $message
* @return void
*/
public function __construct($message = 'No application encryption key has been specified.')
{
parent::__construct($message);
}
}
Function Calls
| None |
Stats
| MD5 | a4e9ea3cdbad2460042cf6e4ae2dc30c |
| Eval Count | 0 |
| Decode Time | 86 ms |