#7802·hyperf

[BUG] php8.5版本中,使用 HyperfCommand 类的 $this->line 会抛出异常

Author: lushaoboCreated Sep 1, 2026Updated Sep 1, 2026
Labelsbug

Execute the command and paste the result below.

Command: uname -a && php -v && composer info | grep hyperf && php --ri swoole

bash
# Paste the result here.

Description:

异常信息为: Using null as an array offset is deprecated, use an empty string instead

这是php8.5 使用 null 作为数组下标已废弃

Steps To Reproduce:

class TaskCommand extends HyperfCommand
{
    public function handle()
    {
        $this->line("text");    // 这一句会报错,因为 $verbosity 默认为 null
    }
}