Exakat\Analyzer\Interfaces\AlreadyParentsInterface::analyze PHP Method

analyze() public method

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