mirror of
https://github.com/twigphp/Twig.git
synced 2026-08-21 03:43:54 +00:00
32 lines
740 B
PHP
32 lines
740 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Twig.
|
|
*
|
|
* (c) Fabien Potencier
|
|
* (c) Armin Ronacher
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Twig\Node\Expression\Binary;
|
|
|
|
use Twig\Compiler;
|
|
use Twig\Node\Expression\ReturnBoolInterface;
|
|
use Twig\Node\Expression\Test\TrueTest;
|
|
use Twig\Node\Node;
|
|
|
|
class AndBinary extends AbstractBinary implements ReturnBoolInterface
|
|
{
|
|
public function __construct(Node $left, Node $right, int $lineno)
|
|
{
|
|
parent::__construct(TrueTest::wrap($left), TrueTest::wrap($right), $lineno);
|
|
}
|
|
|
|
public function operator(Compiler $compiler): Compiler
|
|
{
|
|
return $compiler->raw('&&');
|
|
}
|
|
}
|