File "SubstringFunction.php"

Full Path: /home/warrior1/public_html/languages/wp-content-20241001222009/plugins/mailpoet/vendor-prefixed/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/SubstringFunction.php
File size: 1.59 KB
MIME-type: text/x-php
Charset: utf-8

<?php
declare (strict_types=1);
namespace MailPoetVendor\Doctrine\ORM\Query\AST\Functions;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Doctrine\ORM\Query\AST\Node;
use MailPoetVendor\Doctrine\ORM\Query\AST\SimpleArithmeticExpression;
use MailPoetVendor\Doctrine\ORM\Query\Lexer;
use MailPoetVendor\Doctrine\ORM\Query\Parser;
use MailPoetVendor\Doctrine\ORM\Query\SqlWalker;
class SubstringFunction extends FunctionNode
{
 public $stringPrimary;
 public $firstSimpleArithmeticExpression;
 public $secondSimpleArithmeticExpression = null;
 public function getSql(SqlWalker $sqlWalker)
 {
 $optionalSecondSimpleArithmeticExpression = null;
 if ($this->secondSimpleArithmeticExpression !== null) {
 $optionalSecondSimpleArithmeticExpression = $sqlWalker->walkSimpleArithmeticExpression($this->secondSimpleArithmeticExpression);
 }
 return $sqlWalker->getConnection()->getDatabasePlatform()->getSubstringExpression($sqlWalker->walkStringPrimary($this->stringPrimary), $sqlWalker->walkSimpleArithmeticExpression($this->firstSimpleArithmeticExpression), $optionalSecondSimpleArithmeticExpression);
 }
 public function parse(Parser $parser)
 {
 $parser->match(Lexer::T_IDENTIFIER);
 $parser->match(Lexer::T_OPEN_PARENTHESIS);
 $this->stringPrimary = $parser->StringPrimary();
 $parser->match(Lexer::T_COMMA);
 $this->firstSimpleArithmeticExpression = $parser->SimpleArithmeticExpression();
 $lexer = $parser->getLexer();
 if ($lexer->isNextToken(Lexer::T_COMMA)) {
 $parser->match(Lexer::T_COMMA);
 $this->secondSimpleArithmeticExpression = $parser->SimpleArithmeticExpression();
 }
 $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
}