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
ファイル: ExpressionAnalyser.php プロジェクト: timetoogo/pinq
 public function visitCast(O\CastExpression $expression)
 {
     $this->walk($expression->getCastValue());
     $this->addTypeOperation($expression, $this->analysis[$expression->getCastValue()]->getCast($expression));
 }