]> Raphaël G. Git Repositories - userbundle/commitdiff
Add getVersion member function
authorRaphaël Gertz <git@rapsys.eu>
Thu, 7 Mar 2024 17:06:36 +0000 (18:06 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Thu, 7 Mar 2024 17:06:36 +0000 (18:06 +0100)
Rename user bundle alias
Remove container

RapsysUserBundle.php

index 0ca0f2b63b2e4f345438a9800ec528ff2d9bfe61..e2d571b012c1ffbcb62530308a836ed36f858f71 100644 (file)
 
 namespace Rapsys\UserBundle;
 
-use Symfony\Component\DependencyInjection\Container;
+use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
 use Symfony\Component\HttpKernel\Bundle\Bundle;
 
+use Rapsys\UserBundle\DependencyInjection\RapsysUserExtension;
+
+/**
+ * {@inheritdoc}
+ */
 class RapsysUserBundle 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 +53,17 @@ class RapsysUserBundle 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';
+       }
 }