*
         * @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
 
                //Return underscored lowercase bundle alias
                return Container::underscore(substr(static::class, $npos, $bpos));
-    }
+       }
 }