Exakat\Analyzer\Interfaces\AlreadyParentsInterface::analyze PHP Метод

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

public analyze ( )
    public function analyze()
    {
        // Find classes which are implementing several times the same interface
        $this->atomIs('Class')->outIs('IMPLEMENTS')->savePropertyAs('fullnspath', 'i')->inIs('IMPLEMENTS')->goToAllParents()->outIs('IMPLEMENTS')->samePropertyAs('fullnspath', 'i')->back('first');
        $this->prepareQuery();
    }
AlreadyParentsInterface