我正在用Laravel 5.1做一个项目,并试图实现facebook api。由于我使用了:
composer require facebook/php-sdk-v4
我在重置密码中遇到错误.php在每个页面上:
FatalErrorException in ResetsPasswords.php line 21: syntax error, unexpected '}'
重置密码.php工作正常,根本没有任何错误。第 18-21 行:
public function getEmail()
{
return view('auth.password')
}
我试图删除Facebook软件包。现在它告诉我cmd中的以下信息:
Warning: This development build of composer is over 60 days old. It is recommended to update it by running "C:ProgramDataComposerSetupbincomposer.phar self-update" to get the latest version.
> php artisan clear-compiled
[SymfonyComponentDebugExceptionFatalErrorException] syntax error, unexpected '}'
Script php artisan clear-compiled handling the pre-update-cmd event returned with an error
[RuntimeException]
Error Output:
remove [--dev] [--no-progress] [--no-update] [--update-no-dev] [--update-with-dependencies] [--ignore-platform-reqs] [-o|--optimize-autoloader] [-a|--classmap-authoritative] [--] [<packages>]...
我想这与我的作曲家版本有关。但我对作曲家不是很有经验,在我真正把它弄得一团糟之前,我认为寻求一些帮助并不是不明智的。
所以我非常感谢你的帮助,因为在这个问题得到解决之前,我无法从事这个项目。
你忘记;
:
return view('auth.password');