Exakat\Analyzer\Analyzer::goToAllChildren PHP Метод

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

public goToAllChildren ( $self = self::INCLUDE_SELF )
    public function goToAllChildren($self = self::INCLUDE_SELF)
    {
        if ($self === self::INCLUDE_SELF) {
            $this->addMethod('repeat( out("DEFINITION").in("EXTENDS", "IMPLEMENTS") ).emit().times(' . self::MAX_LOOPING . ')');
        } else {
            $this->addMethod('filter{true}.emit().repeat( out("DEFINITION").in("EXTENDS", "IMPLEMENTS") ).times(' . self::MAX_LOOPING . ')');
        }
        return $this;
    }
Analyzer