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\Auth; use App\Abstracts\Event; class Authenticated extends E..
Decoded Output download
<?php
namespace App\Events\Auth;
use App\Abstracts\Event;
class Authenticated extends Event
{
public $alias;
public $company_id;
public $protocol;
/**
* Create a new event instance.
*
* @param $alias
* @param $company_id
* @param $protocol
*/
public function __construct($alias, $company_id = null, $protocol = 'basic')
{
$this->alias = $alias;
$this->company_id = $company_id;
$this->protocol = $protocol;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace App\Events\Auth;
use App\Abstracts\Event;
class Authenticated extends Event
{
public $alias;
public $company_id;
public $protocol;
/**
* Create a new event instance.
*
* @param $alias
* @param $company_id
* @param $protocol
*/
public function __construct($alias, $company_id = null, $protocol = 'basic')
{
$this->alias = $alias;
$this->company_id = $company_id;
$this->protocol = $protocol;
}
}
Function Calls
| None |
Stats
| MD5 | 3fe00b64147be3f27437863dc534c96f |
| Eval Count | 0 |
| Decode Time | 153 ms |