問題描述
為什麼@inject 方法在實時服務器上不起作用 (why @inject method is not working on the live server)
我正在開發一個 laravel 5 應用程序。在我的代碼中,我注入了一個在 App/Utilities/class.php 中創建的類。在我的宅基地機器上它工作正常,我使用 forge 將文件推送到託管在 Digital Ocean 上的服務器,一切正常,直到 3 天前我開始收到 Class not Found 錯誤。
你有沒有去過這樣的錯誤?你怎麼能解決它?
參考解法
方法 1:
Perhaps it is a composer autoloading issue. Try this:
composer dump‑autoload ‑o
(by arakibi、WebSpanner)