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
There seems to be flood of deprecation warnings for nullable parameters all around the codebase. This bubbles down to other libs as well.
Deprecated: ByJG\DbMigration\Migration::reset(): Implicitly marking parameter $upVersion as nullable is deprecated, the explicit nullable type must be used instead
This style is deprecated:
functionfoo(string$bar = null) { }
Instead it has to be:
functionfoo(?string$bar = null) { }
The text was updated successfully, but these errors were encountered:
We are starting to add the PHP 8.4 compatibility to all dependent classes. So far, we started the branch 5.1 on the highlighted boxes.
In the middle of the process, we found the anydataset-array will be deprecated and we will use anydataset instead. As soon we update this I'll let you know.
There seems to be flood of deprecation warnings for nullable parameters all around the codebase. This bubbles down to other libs as well.
This style is deprecated:
Instead it has to be:
The text was updated successfully, but these errors were encountered: