powermail
powermail copied to clipboard
[BUGFIX] type error
User|null
should not be used as it is supported with PHP 8.2+ only:
Using ?User
is better since it's supported with PHP 7.1 already:
7.1.0 Support for nullable types has been added.
@cweiske i changed it to ?User
as you suggested.