|
function _404(callable $handler = null): callable { |
Gives me, in PHP 8.4 the warning:
Deprecated: _404(): Implicitly marking parameter $handler as nullable is deprecated, the explicit nullable type must be used instead ...
Maybe it just have to be changed to
function _404(?callable $handler = null): callable {
(adding a question mark before the type).
Hope this helps. Thanks for this little cool project!
dispatch/dispatch.php
Line 53 in df1cdab
Gives me, in PHP 8.4 the warning:
Maybe it just have to be changed to
(adding a question mark before the type).
Hope this helps. Thanks for this little cool project!