Lumen报错: Unresolvable dependency resolving [Parameter #0 [ $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);
});
即可解决问题!!!


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM