Symfony\Component\Debug\Exception\FatalErrorException

Sunshine12.5發表於2020-04-02

Laravel6構建專案報錯

Symfony\Component\Debug\Exception\FatalErrorException
Declaration of Symfony\Component\Translation\TranslatorInterface::setLocale($locale) must be 
compatible with Symfony\Contracts\Translation\LocaleAwareInterface::setLocale(string $locale)

解決辦法
在專案目錄修改composer.json檔案
增加如下程式碼
"symfony/translation-contracts": "^1.1.6"

在這裡插入圖片描述
儲存退出執行下面命令

composer update
composer dump-autoload

相關文章