Explorar el Código

[FrameworkBundle] fixed init:bundle

Fabien Potencier hace 14 años
padre
commit
4e0ecfdf81

+ 3 - 0
src/Symfony/Bundle/FrameworkBundle/Command/InitBundleCommand.php

@@ -51,6 +51,9 @@ class InitBundleCommand extends Command
             throw new \InvalidArgumentException('The namespace must end with Bundle.');
         }
 
+        $pos = strrpos($namespace, '\\');
+        $bundle = substr($namespace, $pos ? $pos + 1 : 0);
+
         $dir = $input->getArgument('dir');
         $output->writeln(sprintf('Initializing bundle "<info>%s</info>" in "<info>%s</info>"', $bundle, $dir));