?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/schtroumpf.fr/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/



?? Go up: /home/webdevt/www/schtroumpf.fr/vendor/doctrine/collections/lib/Doctrine/Common/Collections

?? Viewing: 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);
    }
}


??

??