Exakat\Analyzer\Composer\PackagesNames::hasResults PHP Method

hasResults() public method

public hasResults ( )
    public function hasResults()
    {
        Analyzer::initDocs();
        $data = Analyzer::$datastore->getRow('composer');
        $this->report = array();
        foreach ($data as $d) {
            $this->report[$d['component'] . ' (' . $d['version'] . ')'] = true;
        }
        return count($this->report) > 0;
    }