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);});便可解決問題!!!
相關文章
相關標籤/搜索