FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
mailpoet
/
vendor-prefixed
/
doctrine
/
orm
/
src
/
Query
Edit File: Parameter.php
<?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; } }
Save
Back