-
-
Notifications
You must be signed in to change notification settings - Fork 28
Open
Description
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:
function foo(string $bar = null) { }
Instead it has to be:
function foo(?string $bar = null) { }
Metadata
Metadata
Assignees
Labels
No labels