/**
  * Create a new command instance.
  *
  * @return void
  */
 public function __construct(Router $router)
 {
     parent::__construct();
     $this->router = $router;
     $this->routes = $router->getRoutes();
 }
 /**
  * Create a new command instance.
  *
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
 }