Pinq\Expressions\CastExpression::getCastValue PHP Метод

getCastValue() публичный Метод

public getCastValue ( ) : Expression
Результат 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));
 }