Lumen报错: Unresolvable dependency resolving [Parameter #0 [ <required> $app ]] in class Illuminate\Filesystem\FilesystemManager

这个意思是Illuminate\Filesystem\FilesystemManager这个类的参数无法自动注入

解决办法:

在bootstrap/app.php中添加:

$app->bind(\Illuminate\Filesystem\FilesystemManager::class, function ($app) {
return new \Illuminate\Filesystem\FilesystemManager($app);
});
即可解决问题!!!
posted @ 2019-06-18 23:08  李傲强  阅读(3326)  评论(0编辑  收藏  举报