You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deprecated: Qiniu\Config::__construct(): Implicitly marking parameter $z as nullable is deprecated, the explicit nullable type must be used instead in C:\Users\Administrator\Herd\newgtb\vendor\qiniu\php-sdk\src\Qiniu\Config.php on line 44
弃用警告:Qiniu\Config 类的构造函数中,参数 $z 被隐式标记为可空类型(nullable),这是被弃用的做法。你需要明确地使用 ? 来声明其为可空类型。 public function __construct(Region $z = null) {
要改为
public function __construct(?Zone $z = null) {
The text was updated successfully, but these errors were encountered:
Deprecated: Qiniu\Config::__construct(): Implicitly marking parameter $z as nullable is deprecated, the explicit nullable type must be used instead in C:\Users\Administrator\Herd\newgtb\vendor\qiniu\php-sdk\src\Qiniu\Config.php on line 44
弃用警告:Qiniu\Config 类的构造函数中,参数 $z 被隐式标记为可空类型(nullable),这是被弃用的做法。你需要明确地使用 ? 来声明其为可空类型。
public function __construct(Region $z = null) {
要改为
public function __construct(?Zone $z = null) {
The text was updated successfully, but these errors were encountered: