]> Raphaƫl G. Git Repositories - airbundle/blobdiff - RapsysAirBundle.php
Rename rapsysair:calendar2 command to rapsysair:calendar
[airbundle] / RapsysAirBundle.php
index b105d39bef4817a6404c21334495c1c89dd2804e..e1bb77b65664c6049e6a47d79cf7239e581cd0bd 100644 (file)
 
 namespace Rapsys\AirBundle;
 
-use Symfony\Component\DependencyInjection\Container;
+use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
 use Symfony\Component\HttpKernel\Bundle\Bundle;
 
-class RapsysAirBundle extends 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.5.0';
+       }
 }