Barryvdh\Debugbar\DataCollector\FilesCollector::getCompiledFiles PHP Метод

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

Get the files that are going to be compiled, so they aren't as important.
protected getCompiledFiles ( ) : array
Результат array
    protected function getCompiledFiles()
    {
        if ($this->app && class_exists('Illuminate\\Foundation\\Console\\OptimizeCommand')) {
            $reflector = new \ReflectionClass('Illuminate\\Foundation\\Console\\OptimizeCommand');
            $path = dirname($reflector->getFileName()) . '/Optimize/config.php';
            if (file_exists($path)) {
                $app = $this->app;
                $core = (require $path);
                return array_merge($core, $app['config']['compile']);
            }
        }
        return [];
    }