From 49bca5171b038f9e6d211a44c28afb2b68694016 Mon Sep 17 00:00:00 2001 From: Albert Volkman Date: Wed, 21 May 2014 16:27:36 -0400 Subject: [PATCH] Move space addition to implementation. --- lib/Doctrine/ORM/Tools/EntityGenerator.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Doctrine/ORM/Tools/EntityGenerator.php b/lib/Doctrine/ORM/Tools/EntityGenerator.php index d7f225145..80e67a7b1 100644 --- a/lib/Doctrine/ORM/Tools/EntityGenerator.php +++ b/lib/Doctrine/ORM/Tools/EntityGenerator.php @@ -233,7 +233,7 @@ public function () '/** * * - * @param $ + * @param $ * * @return */ @@ -251,7 +251,7 @@ public function ($) '/** * * - * @param $ + * @param $ * * @return */ @@ -269,7 +269,7 @@ public function ($) '/** * * - * @param $ + * @param $ */ public function ($) { @@ -1163,7 +1163,7 @@ public function __construct() $methodTypeHint = null; $types = Type::getTypesMap(); - $variableType = $typeHint ? $this->getType($typeHint) . ' ' : null; + $variableType = $typeHint ? $this->getType($typeHint) : null; if ($typeHint && ! isset($types[$typeHint])) { $variableType = '\\' . ltrim($variableType, '\\');