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\Feed; abstract class Item implements ItemInterface { use Ele..
Decoded Output download
<?php
namespace Pagekit\Feed;
abstract class Item implements ItemInterface
{
use ElementsTrait;
/**
* {@inheritdoc}
*/
public function setTitle($title)
{
return $this->setElement('title', $title);
}
/**
* {@inheritdoc}
*/
public function setContent($content)
{
return $this;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Pagekit\Feed;
abstract class Item implements ItemInterface
{
use ElementsTrait;
/**
* {@inheritdoc}
*/
public function setTitle($title)
{
return $this->setElement('title', $title);
}
/**
* {@inheritdoc}
*/
public function setContent($content)
{
return $this;
}
}
Function Calls
None |
Stats
MD5 | eae96024df8babd4ca1269117639eb41 |
Eval Count | 0 |
Decode Time | 73 ms |