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 Twig\Tests\Node\Expression\Binary; /* * This file is part of Twig. * ..

Decoded Output download

<?php

namespace Twig\Tests\Node\Expression\Binary;

/*
 * This file is part of Twig.
 *
 * (c) Fabien Potencier
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

use Twig\Node\Expression\Binary\ModBinary;
use Twig\Node\Expression\ConstantExpression;
use Twig\Test\NodeTestCase;

class ModTest extends NodeTestCase
{
    public function testConstructor()
    {
        $left = new ConstantExpression(1, 1);
        $right = new ConstantExpression(2, 1);
        $node = new ModBinary($left, $right, 1);

        $this->assertEquals($left, $node->getNode('left'));
        $this->assertEquals($right, $node->getNode('right'));
    }

    public function getTests()
    {
        $left = new ConstantExpression(1, 1);
        $right = new ConstantExpression(2, 1);
        $node = new ModBinary($left, $right, 1);

        return [
            [$node, '(1 % 2)'],
        ];
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Twig\Tests\Node\Expression\Binary;

/*
 * This file is part of Twig.
 *
 * (c) Fabien Potencier
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

use Twig\Node\Expression\Binary\ModBinary;
use Twig\Node\Expression\ConstantExpression;
use Twig\Test\NodeTestCase;

class ModTest extends NodeTestCase
{
    public function testConstructor()
    {
        $left = new ConstantExpression(1, 1);
        $right = new ConstantExpression(2, 1);
        $node = new ModBinary($left, $right, 1);

        $this->assertEquals($left, $node->getNode('left'));
        $this->assertEquals($right, $node->getNode('right'));
    }

    public function getTests()
    {
        $left = new ConstantExpression(1, 1);
        $right = new ConstantExpression(2, 1);
        $node = new ModBinary($left, $right, 1);

        return [
            [$node, '(1 % 2)'],
        ];
    }
}

Function Calls

None

Variables

None

Stats

MD5 de442b36a32d88af06a18709421ccf3a
Eval Count 0
Decode Time 89 ms