這個意思是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);
});
即可解決問題!!!
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。