Laravelをインストールして立ち上がると、下記のエラーが出ました。

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

いろいろ調べて以下の方法で解決しました。

まず、composer.jsonにsymfony/translationを追加します。

"require": {
     ...
     "symfony/translation": "4.3.8",
}

次は

composer update

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です