Skip to content

Commit

Permalink
fix double period in package names
Browse files Browse the repository at this point in the history
  • Loading branch information
havvg committed Oct 1, 2014
1 parent 2652ade commit f383fc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Command/AbstractCommand.php
Expand Up @@ -107,7 +107,7 @@ protected function getPackage(Bundle $bundle, $namespace = '', $baseDirectory =
$package = ltrim(str_replace($baseDirectory, '', $package), DIRECTORY_SEPARATOR);

if (!empty($package)) {
$package = str_replace(DIRECTORY_SEPARATOR, '.', $package).'.';
$package = str_replace(DIRECTORY_SEPARATOR, '.', $package);
}

return $package;
Expand Down

0 comments on commit f383fc8

Please sign in to comment.