为什么我会得到这个错误与Laravel:PHP开捕致命错误?

前端之家收集整理的这篇文章主要介绍了为什么我会得到这个错误与Laravel:PHP开捕致命错误?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我尝试运行PHP工匠(任何东西)时,我得到这个错误
PHP Catchable fatal error:  Argument 2 passed to
Illuminate\Routing\UrlGenerator::__construct()
must be an instance of Illuminate\Http\Request,null given,called in
/www/laravel5/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.PHP
on line 56 and defined in
/www/laravel5/vendor/laravel/framework/src/Illuminate/Routing/UrlGenerator.PHP
on line 81

Catchable fatal error: Argument 2 passed to
Illuminate\Routing\UrlGenerator::__construct()
must be an instance of Illuminate\Http\Request,called in
/www/laravel5/vendor/laravel/framework/src/Illuminate/Routing/RoutingServiceProvider.PHP
on line 56 and defined in
/www/laravel5/vendor/laravel/framework/src/Illuminate/Routing/UrlGenerator.PHP
on line 81

我绝对不知道是什么导致它,需要帮助.

提前致谢

那么我发现什么产生了错误.

在config / services.PHP我这样做:

'facebook' => [
    'client_id'     => env('FACEBOOK_APP_ID',null),'client_secret' => env('FACEBOOK_APP_SECRET','redirect'      => url('auth/facebook'),]

url(‘auth / facebook’)是什么导致的错误.

原文链接:https://www.f2er.com/laravel/132767.html

猜你在找的Laravel相关文章