diff --git a/app/Console/Commands/GenerateHtml.php b/app/Console/Commands/GenerateHtml.php
index ad36e23..dda68f4 100644
--- a/app/Console/Commands/GenerateHtml.php
+++ b/app/Console/Commands/GenerateHtml.php
@@ -17,11 +17,11 @@ class GenerateHtml extends Command
protected $description = 'Generate the static HTML.';
- public function __construct(
- public Router $router,
- public UrlGenerator $url,
- ) {
+ public function __construct(Router $router, UrlGenerator $url) {
parent::__construct();
+
+ $this->router = $router;
+ $this->url = $url;
}
public function handle()