router = new Router(); } public function run(): void { $uri = parse_url($_SERVER['REQUEST_URI'] ?? '/', PHP_URL_PATH); $method = $_SERVER['REQUEST_METHOD'] ?? 'GET'; $this->router->dispatch($uri ?? '/', $method); } public function router(): Router { return $this->router; } }