Просмотр исходного кода

[FrameworkBundle] fixed init:bundle

Fabien Potencier 14 лет назад
Родитель
Сommit
4e0ecfdf81
1 измененных файлов с 3 добавлено и 0 удалено
  1. 3 0
      src/Symfony/Bundle/FrameworkBundle/Command/InitBundleCommand.php

+ 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));