Deprecated: Qiniu\Config::__construct(): Implicitly marking parameter $z as nullable is deprecated, the explicit nullable type must be used instead <?php // 改前 public function __construct(Region $z = null) // 修改为 public function __construct(?Region $z = null)
Deprecated: Qiniu\Config::__construct(): Implicitly marking parameter $z as nullable is deprecated, the explicit nullable type must be used instead