Pinq\Expressions\TernaryExpression::getIfTrue PHP Метод

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

public getIfTrue ( ) : Expression
Результат Expression
    public function getIfTrue()
    {
        return $this->ifTrue;
    }

Usage Example

Пример #1
0
 public function visitTernary(O\TernaryExpression $expression)
 {
     $this->walk($expression->getCondition());
     $this->walk($expression->getIfTrue());
     $this->walk($expression->getIfFalse());
     $this->analysis[$expression] = $this->typeSystem->getCommonAncestorType($this->analysis[$expression->hasIfTrue() ? $expression->getIfTrue() : $expression->getCondition()], $this->analysis[$expression->getIfFalse()]);
 }
All Usage Examples Of Pinq\Expressions\TernaryExpression::getIfTrue