app = $app; } /** * Register the application routes. * * @return void */ public function __invoke(): void { $this->app->get('/[{path:.*}]', Controllers\IndexController::class); } }