未找到 Laravel 5 类“应用程序\Http\控制器\文件”
2022-08-30 14:46:00
我得到以下错误:
Class 'App\Http\Controllers\File' not found
在 laravel 5 控制器中使用时:
$files = File::files( $this->csvDir );
我必须将文件系统添加到 和 中。不知何故,我使用了错误配置。composer.json
config/app.php
这就是我改变的内容:
composer.json
"require": {
"laravel/framework": "5.0.*",
"illuminate/html": "5.*",
"illuminate/filesystem": "5.*" /* my try to repo */
},
配置/应用.php
'providers' => [
// [...]
// jerik 2015-04-17: get html Forms
// http://laravel.io/forum/09-20-2014-html-form-class-not-found-in-laravel-5
'Illuminate\Html\HtmlServiceProvider',
'Illuminate\Filesystem\FilesystemServiceProvider', // try to add file
当我运行时,它运行良好,但是没有下载文件系统的输出。所以我的配置是错误的,但我不知道正确的方法。composer update
任何建议或提示?