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\Compiler\NodeCompiler; use Phug\Compiler\AbstractNodeCompiler; use ..
Decoded Output download
<?php
namespace Phug\Compiler\NodeCompiler;
use Phug\Compiler\AbstractNodeCompiler;
use Phug\Formatter\ElementInterface;
use Phug\Parser\Node\AttributeListNode;
use Phug\Parser\NodeInterface;
class AttributeListNodeCompiler extends AbstractNodeCompiler
{
public function compileNode(NodeInterface $node, ElementInterface $parent = null)
{
$this->getCompiler()->assert(
$node instanceof AttributeListNode,
'Unexpected '.get_class($node).' given to attribute list compiler.',
$node
);
return null;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Phug\Compiler\NodeCompiler;
use Phug\Compiler\AbstractNodeCompiler;
use Phug\Formatter\ElementInterface;
use Phug\Parser\Node\AttributeListNode;
use Phug\Parser\NodeInterface;
class AttributeListNodeCompiler extends AbstractNodeCompiler
{
public function compileNode(NodeInterface $node, ElementInterface $parent = null)
{
$this->getCompiler()->assert(
$node instanceof AttributeListNode,
'Unexpected '.get_class($node).' given to attribute list compiler.',
$node
);
return null;
}
}
Function Calls
None |
Stats
MD5 | 1da82ff953c2d5e3a11516addc7d649d |
Eval Count | 0 |
Decode Time | 123 ms |