orderController = $orderController; $this->checkoutController = $checkoutController; } /** * Register the routes of the controller. * * @return void */ public function registerRoutes(): void { $this->orderController->registerRoutes(); $this->checkoutController->registerRoutes(); } }