| Current Path : /opt/nginxhttpd_/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/ |
| Current File : //opt/nginxhttpd_/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/Value.php |
<?php
namespace Doctrine\Common\Collections\Expr;
class Value implements Expression
{
/** @var mixed */
private $value;
/** @param mixed $value */
public function __construct($value)
{
$this->value = $value;
}
/** @return mixed */
public function getValue()
{
return $this->value;
}
/**
* {@inheritDoc}
*/
public function visit(ExpressionVisitor $visitor)
{
return $visitor->walkValue($this);
}
}