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 Phug\Util\Partial; /** * Class NameTrait. */ trait NameTrait { /**..
Decoded Output download
<?php
namespace Phug\Util\Partial;
/**
* Class NameTrait.
*/
trait NameTrait
{
/**
* @var string
*/
private $name = null;
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param string $name
*
* @return $this
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Phug\Util\Partial;
/**
* Class NameTrait.
*/
trait NameTrait
{
/**
* @var string
*/
private $name = null;
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param string $name
*
* @return $this
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
}
Function Calls
None |
Stats
MD5 | 0aa225e55f7041fd2dbc613427f66a85 |
Eval Count | 0 |
Decode Time | 86 ms |