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

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

public analyze ( )
    public function analyze()
    {
        $this->atomIs('Class')->outIs('IMPLEMENTS')->atomIs(array('Identifier', 'Nsname'));
        $this->prepareQuery();
        $this->atomIs('Instanceof')->outIs('CLASS')->atomIs(array('Identifier', 'Nsname'));
        $this->prepareQuery();
        $this->atomIs('Function')->outIs('ARGUMENTS')->outIs('ARGUMENT')->outIs('TYPEHINT');
        $this->prepareQuery();
    }
InterfaceUsage