From f383fc8a69acf4d52fa5fa23f15dc8d4af095652 Mon Sep 17 00:00:00 2001 From: Toni Uebernickel Date: Wed, 1 Oct 2014 08:52:49 +0200 Subject: [PATCH] fix double period in package names --- Command/AbstractCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Command/AbstractCommand.php b/Command/AbstractCommand.php index 942b554..17153ca 100644 --- a/Command/AbstractCommand.php +++ b/Command/AbstractCommand.php @@ -107,7 +107,7 @@ abstract class AbstractCommand extends ContainerAwareCommand $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;