gpt4 book ai didi

php - 脚本@php artisan package :discover handling the post-autoload-dump event returned with error code 255

转载 作者:可可西里 更新时间:2023-11-01 13:08:28 28 4
gpt4 key购买 nike

我把我的项目从办公 table 搬到了另一个办公 table 。
当我运行 php artisan 时,它不起作用。

我尝试运行 composer update,但它返回错误

Script @php artisan package:discover handling the post-autoload-dump event returned with error code 255

最佳答案

这就是我在从 Laravel 版本 6.x - 7.x 升级后解决这个问题的方法:

App\Exceptions\Handler 中更改

//Use Exception;
Use Throwable;

然后方法接受 Throwable 而不是 Exceptions 的实例,如下所示:

//public function report(Exception$exception);
public function report(Throwable $exception);

//public function render($request, Exception $exception);
public function render($request, Throwable $exception);

config\session.php中:

//'secure' => env('SESSION_SECURE_COOKIE', false),
'secure' => env('SESSION_SECURE_COOKIE', null),

然后运行composer update

关于php - 脚本@php artisan package :discover handling the post-autoload-dump event returned with error code 255,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50840960/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com