这个意思是IlluminateFilesystemFilesystemManager这个类的参数无法自动注入
解决办法:
在bootstrap/app.php中添加:
$app->bind(IlluminateFilesystemFilesystemManager::class, function ($app) { return new IlluminateFilesystemFilesystemManager($app);});即可解决问题!!!