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

analyze() public method

public analyze ( )
    public function analyze()
    {
        $functions = array('spl_autoload_call', 'spl_autoload_functions', 'spl_autoload_extensions', 'spl_autoload_register', 'spl_autoload_unregister', 'spl_autoload', 'spl_classes', 'spl_object_hash');
        $this->atomFunctionIs($functions);
        $this->prepareQuery();
        $this->atomIs('Function')->outIs('NAME')->codeIs('__autoload')->back('first');
        $this->prepareQuery();
    }
AutoloadUsage