Pinq\Expressions\ArrayItemExpression::getValue PHP Method

getValue() public method

public getValue ( ) : Expression
return Expression
    public function getValue()
    {
        return $this->value;
    }

Usage Example

コード例 #1
0
ファイル: ExpressionAnalyser.php プロジェクト: timetoogo/pinq
 public function visitArrayItem(O\ArrayItemExpression $expression)
 {
     $this->walk($expression->getKey());
     $this->walk($expression->getValue());
 }