File "FunctionNode.php"

Full Path: /home/warrior1/public_html/languages/wp-content-20241001222009/plugins/mailpoet/vendor-prefixed/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/FunctionNode.php
File size: 579 bytes
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\Parser;
use MailPoetVendor\Doctrine\ORM\Query\SqlWalker;
abstract class FunctionNode extends Node
{
 public $name;
 public function __construct($name)
 {
 $this->name = $name;
 }
 public abstract function getSql(SqlWalker $sqlWalker);
 public function dispatch($sqlWalker)
 {
 return $sqlWalker->walkFunction($this);
 }
 public abstract function parse(Parser $parser);
}