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 Encore\Admin\Grid\Concerns; use Closure; use Encore\Admin\Grid\Tools\Hea..
Decoded Output download
<?php
namespace Encore\Admin\Grid\Concerns;
use Closure;
use Encore\Admin\Grid\Tools\Header;
trait HasHeader
{
/**
* @var Closure
*/
protected $header;
/**
* Set grid header.
*
* @param Closure|null $closure
*
* @return $this|Closure
*/
public function header(Closure $closure = null)
{
if (!$closure) {
return $this->header;
}
$this->header = $closure;
return $this;
}
/**
* @return string
*/
public function renderHeader()
{
if (!$this->header) {
return '';
}
return (new Header($this))->render();
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Encore\Admin\Grid\Concerns;
use Closure;
use Encore\Admin\Grid\Tools\Header;
trait HasHeader
{
/**
* @var Closure
*/
protected $header;
/**
* Set grid header.
*
* @param Closure|null $closure
*
* @return $this|Closure
*/
public function header(Closure $closure = null)
{
if (!$closure) {
return $this->header;
}
$this->header = $closure;
return $this;
}
/**
* @return string
*/
public function renderHeader()
{
if (!$this->header) {
return '';
}
return (new Header($this))->render();
}
}
Function Calls
None |
Stats
MD5 | ce1639cbd0dfe5f31cacb4c84a609f26 |
Eval Count | 0 |
Decode Time | 90 ms |