Pinq\Expressions\ArgumentExpression::update PHP 메소드

update() 공개 메소드

public update ( Expression $value, boolean $isUnpacked ) : self
$value Expression
$isUnpacked boolean
리턴 self
    public function update(Expression $value, $isUnpacked)
    {
        if ($this->value === $value && $this->isUnpacked === $isUnpacked) {
            return $this;
        }
        return new self($value, $isUnpacked);
    }