当我尝试运行php artisan (anything)
时,我得到这个错误:
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, 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
我完全不知道是什么原因造成的,需要帮助。
先谢谢你了
4条答案
按热度按时间x6h2sr281#
我发现了产生错误的原因。
在
config/services.php
中,我是这样做的:url('auth/facebook')
是导致错误的原因。x7rlezfr2#
如你所知,问题是由于在config中使用url()引起的。如果使用asset(),也会发生同样的情况。当运行artisan命令时,框架无法确定网站的url是什么,因此出现错误。
我只想提出一个替代方案:
我不喜欢它,但它是非常不可能的,你永远需要你的FB重定向时,运行命令行脚本,这样你就不必记住配置重定向在每个环境。
nnt7mjpx3#
此问题是由于在配置中使用url()引起的。我把它从config/filesystems.php中删除了,它工作了!希望对你有帮助!
bq3bfh9z4#
当你在配置文件中使用
route()
助手时,你会得到同样的错误,那是我的错误。