这个意思是Illuminate\Filesystem\FilesystemManager这个类的参数无法自动注入
解决办法:
在bootstrap/app.php中添加:
$app->bind(\Illuminate\Filesystem\FilesystemManager::class, function ($app) {
return new \Illuminate\Filesystem\FilesystemManager($app);
});
即可解决问题!!!
赞
踩
这个意思是Illuminate\Filesystem\FilesystemManager这个类的参数无法自动注入
解决办法:
在bootstrap/app.php中添加:
$app->bind(\Illuminate\Filesystem\FilesystemManager::class, function ($app) {
return new \Illuminate\Filesystem\FilesystemManager($app);
});
即可解决问题!!!
转载于:https://www.cnblogs.com/qaing123/p/11048485.html
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。