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 TCG\Voyager\Events; use Illuminate\Queue\SerializesModels; class TableD..
Decoded Output download
<?php
namespace TCG\Voyager\Events;
use Illuminate\Queue\SerializesModels;
class TableDeleted
{
use SerializesModels;
public $name;
public function __construct($name)
{
$this->name = $name;
event(new TableChanged($name, 'Deleted'));
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace TCG\Voyager\Events;
use Illuminate\Queue\SerializesModels;
class TableDeleted
{
use SerializesModels;
public $name;
public function __construct($name)
{
$this->name = $name;
event(new TableChanged($name, 'Deleted'));
}
}
Function Calls
None |
Stats
MD5 | ba02b7f65d3bd06cadf9907cb7da5083 |
Eval Count | 0 |
Decode Time | 88 ms |