Pinq\Expressions\EmptyExpression::getValue PHP Method

getValue() public method

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

Usage Example

Example #1
0
 public function visitEmpty(O\EmptyExpression $expression)
 {
     $this->walk($expression->getValue());
     $this->analysis[$expression] = $this->typeSystem->getNativeType(INativeType::TYPE_BOOL);
 }
All Usage Examples Of Pinq\Expressions\EmptyExpression::getValue