]> Raphaël G. Git Repositories - airbundle/commitdiff
Shorten bundle alias
authorRaphaël Gertz <git@rapsys.eu>
Thu, 7 Mar 2024 18:09:19 +0000 (19:09 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Thu, 7 Mar 2024 18:09:19 +0000 (19:09 +0100)
Add getVersion member function

RapsysAirBundle.php

index 0bad7254f6eda7d08a8bcbf6aa1725af4218a641..84b94cdcfd2edfa51ac33a1661f0c36df0a73803 100644 (file)
@@ -14,13 +14,24 @@ namespace Rapsys\AirBundle;
 use Symfony\Component\DependencyInjection\Container;
 use Symfony\Component\HttpKernel\Bundle\Bundle;
 
+/**
+ * {@inheritdoc}
+ */
 class RapsysAirBundle extends Bundle {
+       /**
+        * {@inheritdoc}
+        */
+       public function getContainerExtension(): ?ExtensionInterface {
+               //Return created container extension
+               return $this->createContainerExtension();
+       }
+
        /**
         * Return bundle alias
         *
         * @return string The bundle alias
         */
-    public static function getAlias(): string {
+       public static function getAlias(): string {
                //With namespace
                if ($npos = strrpos(static::class, '\\')) {
                        //Set name pos
@@ -40,7 +51,17 @@ class RapsysAirBundle extends Bundle {
                        $bpos = strlen(static::class) - $npos;
                }
 
-               //Return underscored lowercase bundle alias
-               return Container::underscore(substr(static::class, $npos, $bpos));
-    }
+               //Return lowercase bundle alias
+               return strtolower(substr(static::class, $npos, $bpos));
+       }
+
+       /**
+        * Return bundle version
+        *
+        * @return string The bundle version
+        */
+       public static function getVersion(): string {
+               //Return version
+               return '0.4.0';
+       }
 }