File "Literal.php"

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

<?php
declare (strict_types=1);
namespace MailPoetVendor\Doctrine\ORM\Query\AST;
if (!defined('ABSPATH')) exit;
class Literal extends Node
{
 public const STRING = 1;
 public const BOOLEAN = 2;
 public const NUMERIC = 3;
 public $type;
 public $value;
 public function __construct($type, $value)
 {
 $this->type = $type;
 $this->value = $value;
 }
 public function dispatch($walker)
 {
 return $walker->walkLiteral($this);
 }
}