File "Parameter.php"

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

<?php
declare (strict_types=1);
namespace MailPoetVendor\Doctrine\ORM\Query;
if (!defined('ABSPATH')) exit;
use function trim;
class Parameter
{
 public static function normalizeName($name)
 {
 return trim((string) $name, ':');
 }
 private $name;
 private $value;
 private $type;
 private $typeSpecified;
 public function __construct($name, $value, $type = null)
 {
 $this->name = self::normalizeName($name);
 $this->typeSpecified = $type !== null;
 $this->setValue($value, $type);
 }
 public function getName()
 {
 return $this->name;
 }
 public function getValue()
 {
 return $this->value;
 }
 public function getType()
 {
 return $this->type;
 }
 public function setValue($value, $type = null)
 {
 $this->value = $value;
 $this->type = $type ?: ParameterTypeInferer::inferType($value);
 }
 public function typeWasSpecified() : bool
 {
 return $this->typeSpecified;
 }
}