]> Raphaƫl G. Git Repositories - packbundle/blobdiff - RapsysPackBundle.php
Remove unused getBundleAlias function
[packbundle] / RapsysPackBundle.php
index 285c7bb0dea3fe6d61e36dea0eab4eb032a51fe0..c9a6d48156aa01db326646278d0b0e12bf1c16fc 100644 (file)
@@ -28,45 +28,6 @@ class RapsysPackBundle extends Bundle {
                return $this->createContainerExtension();
        }
 
                return $this->createContainerExtension();
        }
 
-       /**
-        * Return bundle alias
-        *
-        * @return string The bundle alias
-        */
-       public static function getBundleAlias(): string {
-               //With namespace
-               if ($npos = strrpos(static::class, '\\')) {
-                       //Set name pos
-                       $npos++;
-
-                       //With single namespace
-                       $nspos = strpos(static::class, '\\');
-                       //Without namespace
-               } else {
-                       //Set name pos
-                       $npos = 0;
-               }
-
-               //With trailing bundle
-               if (substr(static::class, -strlen('Bundle'), strlen('Bundle')) === 'Bundle') {
-                       //Set bundle pos
-                       $bpos = strlen(static::class) - $npos - strlen('Bundle');
-                       //Without bundle
-               } else {
-                       //Set bundle pos
-                       $bpos = strlen(static::class) - $npos;
-               }
-
-               //With namespace
-               if ($npos) {
-                       //Return prefixed class name
-                       return strtolower(substr(static::class, 0, $nspos).'/'.substr(static::class, $npos, $bpos));
-               }
-
-               //Return class name
-               return strtolower(substr(static::class, $npos, $bpos));
-       }
-
        /**
         * Return alias
         *
        /**
         * Return alias
         *