powermail icon indicating copy to clipboard operation
powermail copied to clipboard

[BUGFIX] type error

Open samowitsch opened this issue 1 year ago • 2 comments

Bildschirmfoto 2024-01-26 um 09 43 07

samowitsch avatar Jan 26 '24 09:01 samowitsch

User|null should not be used as it is supported with PHP 8.2+ only:

8.2.0 The types null and false can now be used standalone.

Using ?User is better since it's supported with PHP 7.1 already:

7.1.0 Support for nullable types has been added.

cweiske avatar Feb 29 '24 12:02 cweiske

@cweiske i changed it to ?User as you suggested.

samowitsch avatar Mar 01 '24 12:03 samowitsch