Update checklist
- The prefix
Iis slowly disappearing from these interfaces - For the
IRouterinterface, the parent folder is also changing toRouting\ - In PHP 8.1 the
reset()function cannot be used on objects anymore, it must be pretyped to a string - In the
redirectfunction the first parameter http code is no longer given - Function
strlenin php 8. 1 no longer accepts null as a parameter. It can be fixed with this
regex:strlen\(\$([^?]*?)\)replace:
strlen\(\$$1 \?\? ''\)