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 Pagekit\Kernel\Event; class ControllerEvent extends KernelEvent { us..
Decoded Output download
<?php
namespace Pagekit\Kernel\Event;
class ControllerEvent extends KernelEvent
{
use ResponseTrait;
/**
* @var callable
*/
protected $controller;
/**
* @var mixed
*/
protected $controllerResult;
/**
* Gets the controller.
*
* @return callable
*/
public function getController()
{
return $this->controller;
}
/**
* Sets the controller.
*
* @param callable $controller
*/
public function setController(callable $controller)
{
$this->controller = $controller;
}
/**
* Gets the controller result.
*
* @return mixed
*/
public function getControllerResult()
{
return $this->controllerResult;
}
/**
* Sets the controller result.
*
* @param mixed $controllerResult
*/
public function setControllerResult($controllerResult)
{
$this->controllerResult = $controllerResult;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Pagekit\Kernel\Event;
class ControllerEvent extends KernelEvent
{
use ResponseTrait;
/**
* @var callable
*/
protected $controller;
/**
* @var mixed
*/
protected $controllerResult;
/**
* Gets the controller.
*
* @return callable
*/
public function getController()
{
return $this->controller;
}
/**
* Sets the controller.
*
* @param callable $controller
*/
public function setController(callable $controller)
{
$this->controller = $controller;
}
/**
* Gets the controller result.
*
* @return mixed
*/
public function getControllerResult()
{
return $this->controllerResult;
}
/**
* Sets the controller result.
*
* @param mixed $controllerResult
*/
public function setControllerResult($controllerResult)
{
$this->controllerResult = $controllerResult;
}
}
Function Calls
None |
Stats
MD5 | 627439d24d104941c0a309ee5b8be8ae |
Eval Count | 0 |
Decode Time | 81 ms |