getValue() public method

public getValue ( ) : Expression
return Expression
コード例 #1
0
ファイル: ExpressionAnalyser.php プロジェクト: timetoogo/pinq
 public function visitArgument(O\ArgumentExpression $expression)
 {
     $this->walk($expression->getValue());
 }
コード例 #2
0
 protected function visitArgument(ArgumentExpression $expression)
 {
     if ($expression->isUnpacked()) {
         throw new PinqDemoSqlException('Does not support argument unpacking');
     }
     $this->walk($expression->getValue());
 }