walkStringPrimary($this->stringPrimary); $platform = $sqlWalker->getConnection()->getDatabasePlatform(); $trimMode = $this->getTrimMode(); if ($this->trimChar !== false) { return $platform->getTrimExpression( $stringPrimary, $trimMode, $platform->quoteStringLiteral($this->trimChar) ); } return $platform->getTrimExpression($stringPrimary, $trimMode); } /** * {@inheritdoc} */ public function parse(Parser $parser) { $lexer = $parser->getLexer(); $parser->match(Lexer::T_IDENTIFIER); $parser->match(Lexer::T_OPEN_PARENTHESIS); $this->parseTrimMode($parser); if ($lexer->isNextToken(Lexer::T_STRING)) { $parser->match(Lexer::T_STRING); $this->trimChar = $lexer->token['value']; } if ($this->leading || $this->trailing || $this->both || $this->trimChar) { $parser->match(Lexer::T_FROM); } $this->stringPrimary = $parser->StringPrimary(); $parser->match(Lexer::T_CLOSE_PARENTHESIS); } /** * @psalm-return TrimMode::* */ private function getTrimMode(): int { if ($this->leading) { return TrimMode::LEADING; } if ($this->trailing) { return TrimMode::TRAILING; } if ($this->both) { return TrimMode::BOTH; } return TrimMode::UNSPECIFIED; } private function parseTrimMode(Parser $parser): void { $lexer = $parser->getLexer(); $value = $lexer->lookahead['value']; if (strcasecmp('leading', $value) === 0) { $parser->match(Lexer::T_LEADING); $this->leading = true; return; } if (strcasecmp('trailing', $value) === 0) { $parser->match(Lexer::T_TRAILING); $this->trailing = true; return; } if (strcasecmp('both', $value) === 0) { $parser->match(Lexer::T_BOTH); $this->both = true; return; } } }