Php8 does not accept
$app->router->post('/contact', [SiteController::class, 'handleContact']);
It accepts
$app->router->post('/contact', [new SiteController(), 'handleContact']);
The problem occurs if you are building the framework following the steps in the video. It is solved later in Router->resolve()