0

我使用 PHP7 在我的服务器上安装了 symfony3 的 wellCommerce,我收到了这个错误:

FatalErrorException in AdminSubscriber.php line 74:
Parse Error: syntax error, unexpected ':', expecting ';' or '{'

产生此错误的代码是这个:

private function getUserRepository() : UserRepositoryInterface
{
    return $this->get('user.repository');
}

我在 php7 上阅读了有关返回类型声明的信息,但我不知道为什么会出现此错误。

非常感谢你的帮助。

4

1 回答 1

1

我已经安装了 PHP5.6 和 PHP7,但是 apache 默认使用 PHP5.6。为了解决这个问题,我删除了服务器中的所有 PHP 并安装了最新版本的 PHP7.1。

于 2016-09-06T06:50:55.147 回答