Lumen报错: Unresolvable dependency resolving [Parameter #0 [ $app ]] in class Illuminate\Fi

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

解决办法:bootstrap

在bootstrap/app.php中添加:app

$app->bind(\Illuminate\Filesystem\FilesystemManager::class, function ($app) {    return new \Illuminate\Filesystem\FilesystemManager($app);});便可解决问题!!!
相关文章
相关标签/搜索