Hi
I have that warning on php 8.4.16 with t4 v 2.5.4
Deprecated: T4\MVC\Router\T4::__construct(): Implicitly marking parameter $app as nullable is deprecated, the explicit nullable type must be used
plugins\system\t4\src\t4\MVC\Router\T4.php on line 82
It disappears when you change line 82 from this
public function __construct(SiteApplication $app = null, AbstractMenu $menu = null)
like this
public function __construct(?SiteApplication $app = null, ?AbstractMenu $menu = null)
may be it can be corrected on next version