From: Raphaƫl Gertz <git@rapsys.eu>
Date: Wed, 28 Feb 2024 11:28:58 +0000 (+0100)
Subject: Rename Command/Command in Command
X-Git-Tag: 0.3.0~44
X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/63f450314124eeb396ac4c1513084e54bfc0d55e

Rename Command/Command in Command
---

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;
+		}*/
 	}
 
 	/**