..&$i
Author: Elliot Levin (elliotlevin@hotmail.com)
Inheritance: extends Expression
Exemplo n.º 1
0
 public function visitArgument(O\ArgumentExpression $expression)
 {
     $this->walk($expression->getValue());
 }
 protected function visitArgument(ArgumentExpression $expression)
 {
     if ($expression->isUnpacked()) {
         throw new PinqDemoSqlException('Does not support argument unpacking');
     }
     $this->walk($expression->getValue());
 }