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

analyze() public method

public analyze ( )
    public function analyze()
    {
        $magicMethods = $this->loadIni('php_magic_methods.ini', 'magicMethod');
        // Methods definitions
        $this->atomIs('Function')->analyzerIsNot('Classes/UsedMethods')->outIs('NAME')->analyzerIs('Classes/MethodDefinition')->codeIsNot($magicMethods)->back('first');
        $this->prepareQuery();
    }