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 /** * This file is part of the rybakit/twig-deferred-extension package. * * (c) ..

Decoded Output download

<?php

/**
 * This file is part of the rybakit/twig-deferred-extension package.
 *
 * (c) Eugene Leonovich <[email protected]>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

declare(strict_types=1);

namespace Twig\DeferredExtension;

use Twig\Compiler;
use Twig\Node\Node;

final class DeferredNode extends Node
{
    public function compile(Compiler $compiler) : void
    {
        $compiler
            ->write("\$this->deferred->resolve(\$this, \$context, \$blocks);\n")
        ;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

/**
 * This file is part of the rybakit/twig-deferred-extension package.
 *
 * (c) Eugene Leonovich <[email protected]>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

declare(strict_types=1);

namespace Twig\DeferredExtension;

use Twig\Compiler;
use Twig\Node\Node;

final class DeferredNode extends Node
{
    public function compile(Compiler $compiler) : void
    {
        $compiler
            ->write("\$this->deferred->resolve(\$this, \$context, \$blocks);\n")
        ;
    }
}

Function Calls

None

Variables

None

Stats

MD5 b076fb13d15b8c084aeced56fefd3a64
Eval Count 0
Decode Time 117 ms