From 1378626937a3d6d1331a136e9514e80d10d0aa3b Mon Sep 17 00:00:00 2001 From: Javier Spagnoletti Date: Fri, 29 Aug 2014 22:49:23 -0300 Subject: [PATCH] Fixed new line in docblock (247803715bd7e5ded75e25dbbb4eb2c5b7fbd2f2). --- lib/Doctrine/ORM/Tools/EntityGenerator.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/Doctrine/ORM/Tools/EntityGenerator.php b/lib/Doctrine/ORM/Tools/EntityGenerator.php index e04b15801..72b254e58 100644 --- a/lib/Doctrine/ORM/Tools/EntityGenerator.php +++ b/lib/Doctrine/ORM/Tools/EntityGenerator.php @@ -219,6 +219,7 @@ class EntityGenerator '/** * * + * * @return */ public function () @@ -233,6 +234,7 @@ public function () '/** * * + * * @param $ * * @return @@ -251,6 +253,7 @@ public function ($) '/** * * + * * @param $ * * @return @@ -269,6 +272,7 @@ public function ($) '/** * * + * * @param $ */ public function ($) @@ -1173,7 +1177,7 @@ public function __construct() } $replacements = array( - '' => ucfirst($type) . ' ' . $variableName . ".\n", + '' => ucfirst($type) . ' ' . $variableName, '' => $methodTypeHint, '' => $variableType, '' => $variableName,