全新安装 laravel6,访问时报错:
Declaration of Symfony\Component\Translation\TranslatorInterface::setLocale($locale) must be
compatible with Symfony\Contracts\Translation\LocaleAwareInterface::setLocale(string $locale)
查看资料发现该问题和环境有关系,解决办法如下:
修改 composer.json 文件, 添加:
"require": {
...
"symfony/translation": "4.3.8",
}
运行
composer update
即可~