Exakat\Analyzer\Classes\NullOnNew::analyze PHP Method

analyze() public method

public analyze ( )
    public function analyze()
    {
        $names = array('finfo', 'PDO', 'Collator', 'IntlDateFormatter', 'MessageFormatter', 'NumberFormatter', 'ResourceBundle', 'IntlRuleBasedBreakIterator');
        $names = $this->makeFullNsPath($names);
        $this->atomIs('New')->outIs('NEW')->tokenIs(array('T_STRING', 'T_NS_SEPARATOR'))->atomIsNot('Array')->fullnspathIs($names)->back('first');
        $this->prepareQuery();
    }
NullOnNew