Viewing File: /home/rtsgrob/ww3/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/orm/src/Query/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;
}
}
Back to Directory
File Manager