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 declare(strict_types=1); namespace Doctrine\ORM\Query\AST; use Doctrine\ORM\Query..
Decoded Output download
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Query\AST;
use Doctrine\ORM\Query\SqlWalker;
class BetweenExpression extends Node
{
public function __construct(
public ArithmeticExpression $expression,
public ArithmeticExpression $leftBetweenExpression,
public ArithmeticExpression $rightBetweenExpression,
public bool $not = false,
) {
}
public function dispatch(SqlWalker $walker): string
{
return $walker->walkBetweenExpression($this);
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Query\AST;
use Doctrine\ORM\Query\SqlWalker;
class BetweenExpression extends Node
{
public function __construct(
public ArithmeticExpression $expression,
public ArithmeticExpression $leftBetweenExpression,
public ArithmeticExpression $rightBetweenExpression,
public bool $not = false,
) {
}
public function dispatch(SqlWalker $walker): string
{
return $walker->walkBetweenExpression($this);
}
}
Function Calls
None |
Stats
MD5 | d11c51cd2d5df01d1d8de35a3405b7cc |
Eval Count | 0 |
Decode Time | 82 ms |