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