__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/*
* 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.
*/
namespace Twig\Node\Expression\Binary;
use Twig\Compiler;
class LessEqualBinary extends AbstractBinary
{
public function compile(Compiler $compiler): void
{
if (\PHP_VERSION_ID >= 80000) {
parent::compile($compiler);
return;
}
$compiler
->raw('(0 >= twig_compare(')
->subcompile($this->getNode('left'))
->raw(', ')
->subcompile($this->getNode('right'))
->raw('))')
;
}
public function operator(Compiler $compiler): Compiler
{
return $compiler->raw('<=');
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| AbstractBinary.php | File | 992 B | 0644 |
|
| AddBinary.php | File | 434 B | 0644 |
|
| AndBinary.php | File | 435 B | 0644 |
|
| BitwiseAndBinary.php | File | 441 B | 0644 |
|
| BitwiseOrBinary.php | File | 440 B | 0644 |
|
| BitwiseXorBinary.php | File | 441 B | 0644 |
|
| ConcatBinary.php | File | 437 B | 0644 |
|
| DivBinary.php | File | 434 B | 0644 |
|
| EndsWithBinary.php | File | 887 B | 0644 |
|
| EqualBinary.php | File | 811 B | 0644 |
|
| FloorDivBinary.php | File | 589 B | 0644 |
|
| GreaterBinary.php | File | 812 B | 0644 |
|
| GreaterEqualBinary.php | File | 817 B | 0644 |
|
| HasEveryBinary.php | File | 708 B | 0644 |
|
| HasSomeBinary.php | File | 706 B | 0644 |
|
| InBinary.php | File | 690 B | 0644 |
|
| LessBinary.php | File | 810 B | 0644 |
|
| LessEqualBinary.php | File | 814 B | 0644 |
|
| MatchesBinary.php | File | 691 B | 0644 |
|
| ModBinary.php | File | 434 B | 0644 |
|
| MulBinary.php | File | 434 B | 0644 |
|
| NotEqualBinary.php | File | 814 B | 0644 |
|
| NotInBinary.php | File | 698 B | 0644 |
|
| OrBinary.php | File | 434 B | 0644 |
|
| PowerBinary.php | File | 415 B | 0644 |
|
| RangeBinary.php | File | 684 B | 0644 |
|
| SpaceshipBinary.php | File | 420 B | 0644 |
|
| StartsWithBinary.php | File | 891 B | 0644 |
|
| SubBinary.php | File | 434 B | 0644 |
|