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