Exakat\Reports\Devoops::ProcessedFiles PHP Метод

ProcessedFiles() защищенный Метод

protected ProcessedFiles ( )
    protected function ProcessedFiles()
    {
        $css = new \Stdclass();
        $css->displayTitles = true;
        $css->titles = array('File');
        $css->readOrder = $css->titles;
        $data = array();
        $res = $this->datastore->query('SELECT file FROM files');
        while ($row = $res->fetchArray()) {
            $data[] = array('File' => $row['file']);
        }
        return $this->formatText(<<<TEXT
This is the list of processed files. Any file that is in the project, but not in the list below was omitted in the analyze. 

This may be due to configuration file, compilation error, wrong extension (including no extension). 
TEXT
, 'textLead') . $this->formatSimpleTable($data, $css);
    }