Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PHP8.4+版本中大量异常报错 #3026

Open
wolf-leo opened this issue Jul 11, 2024 · 1 comment
Open

PHP8.4+版本中大量异常报错 #3026

wolf-leo opened this issue Jul 11, 2024 · 1 comment
Labels

Comments

@wolf-leo
Copy link

所属功能组件

其它

ThinkPHP 版本

8.0.3

操作系统

Windows、Linux

错误信息

php8.4+出现大量异常报错

Deprecated: Implicitly marking parameter $params as nullable is deprecated, the explicit nullable type must be used instead in ... on line xxx
PHP RFC: Deprecate implicitly nullable parameter types

The following example:

class Foo {
    public function bar(int $x = null, float $y) {
        // ...
    }
}

should end up looking like:

class Foo {
    public function bar(?int $x, float $y) {
        // ...
    }
}

其它说明

No response

@wolf-leo wolf-leo added the bug label Jul 11, 2024
@big-dream
Copy link
Contributor

PHP 8.4 目前还没正式发布

@big-dream big-dream added Feature and removed bug labels Jul 11, 2024
big-dream added a commit to big-dream/think-helper that referenced this issue Aug 20, 2024
big-dream added a commit to big-dream/think-orm that referenced this issue Aug 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants