/
home
/
obinna
/
html
/
boaz2
/
vendor
/
doctrine
/
collections
/
lib
/
Doctrine
/
Common
/
Collections
/
Expr
/
Upload File
HOME
<?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); } }