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\Events\Banking; use App\Abstracts\Event; class AccountDeleting exte..
Decoded Output download
<?php
namespace App\Events\Banking;
use App\Abstracts\Event;
class AccountDeleting extends Event
{
public $account;
/**
* Create a new event instance.
*
* @param $account
*/
public function __construct($account)
{
$this->account = $account;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace App\Events\Banking;
use App\Abstracts\Event;
class AccountDeleting extends Event
{
public $account;
/**
* Create a new event instance.
*
* @param $account
*/
public function __construct($account)
{
$this->account = $account;
}
}
Function Calls
None |
Stats
MD5 | c86c522e7320bc7eccdc315663c5fa6f |
Eval Count | 0 |
Decode Time | 112 ms |