File "InputParameter.php"

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

<?php
declare (strict_types=1);
namespace MailPoetVendor\Doctrine\ORM\Query\AST;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Doctrine\ORM\Query\QueryException;
use function is_numeric;
use function strlen;
use function substr;
class InputParameter extends Node
{
 public $isNamed;
 public $name;
 public function __construct($value)
 {
 if (strlen($value) === 1) {
 throw QueryException::invalidParameterFormat($value);
 }
 $param = substr($value, 1);
 $this->isNamed = !is_numeric($param);
 $this->name = $param;
 }
 public function dispatch($walker)
 {
 return $walker->walkInputParameter($this);
 }
}