Pinq\Expressions\CastExpression::getCastValue PHP Method

getCastValue() public method

public getCastValue ( ) : Expression
return Expression The expression which is cast
    public function getCastValue()
    {
        return $this->castValue;
    }

Usage Example

示例#1
0
 public function visitCast(O\CastExpression $expression)
 {
     $this->walk($expression->getCastValue());
     $this->addTypeOperation($expression, $this->analysis[$expression->getCastValue()]->getCast($expression));
 }