From 63f450314124eeb396ac4c1513084e54bfc0d55e Mon Sep 17 00:00:00 2001
From: =?utf8?q?Rapha=C3=ABl=20Gertz?= <git@rapsys.eu>
Date: Wed, 28 Feb 2024 12:28:58 +0100
Subject: [PATCH] Rename Command/Command in Command

---
 Command/Command.php => Command.php | 11 +++++++++++
 1 file changed, 11 insertions(+)
 rename Command/Command.php => Command.php (89%)

diff --git a/Command/Command.php b/Command.php
similarity index 89%
rename from Command/Command.php
rename to Command.php
index 346a45f..6f4a8ee 100644
--- a/Command/Command.php
+++ b/Command.php
@@ -92,6 +92,17 @@ class Command extends BaseCommand {
 
 		//Set locale
 		$this->locale = $locale;
+
+		//With default name
+		//TODO: XXX: see how to make it works
+		/*if (isset(self::$defaultName)) {
+			$this->name = self::$defaultName;
+		}
+
+		//With default description
+		if (isset(self::$defaultDescription)) {
+			$this->name = self::$defaultDescription;
+		}*/
 	}
 
 	/**
-- 
2.41.3