Exakat\Analyzer\Namespaces\UseWithFullyQualifiedNS::analyze PHP Method

analyze() public method

public analyze ( )
    public function analyze()
    {
        // Normal group
        $this->atomIs('Use')->hasNoClassTrait()->outIs('USE')->atomIs(array('Nsname', 'As'))->outIsIE('NAME')->is('absolute', true);
        $this->prepareQuery();
        // Group use
        $this->atomIs('Use')->hasNoClassTrait()->outIs('GROUPUSE')->atomIs('Nsname')->is('absolute', true);
        $this->prepareQuery();
    }
UseWithFullyQualifiedNS