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