Exakat\Analyzer\Php\ReservedKeywords7::analyze PHP Method

analyze() public method

public analyze ( )
    public function analyze()
    {
        $keywords = $this->loadIni('php_reserved_types.ini', 'type');
        $this->atomIs(array('Class', 'Trait', 'Interface'))->outIs('NAME')->codeIs($keywords)->back('first');
        $this->prepareQuery();
        $this->atomIs('Nsname')->outIs('SUBNAME')->codeIs($keywords)->back('first');
        $this->prepareQuery();
    }
ReservedKeywords7