1
0
mirror of synced 2025-02-22 15:13:13 +03:00

Fixed new line in docblock (247803715bd7e5ded75e25dbbb4eb2c5b7fbd2f2).

This commit is contained in:
Javier Spagnoletti 2014-08-29 22:49:23 -03:00
parent 2a80e34179
commit 1378626937

View File

@ -219,6 +219,7 @@ class EntityGenerator
'/** '/**
* <description> * <description>
* *
*
* @return <variableType> * @return <variableType>
*/ */
public function <methodName>() public function <methodName>()
@ -233,6 +234,7 @@ public function <methodName>()
'/** '/**
* <description> * <description>
* *
*
* @param <variableType> $<variableName> * @param <variableType> $<variableName>
* *
* @return <entity> * @return <entity>
@ -251,6 +253,7 @@ public function <methodName>(<methodTypeHint>$<variableName><variableDefault>)
'/** '/**
* <description> * <description>
* *
*
* @param <variableType> $<variableName> * @param <variableType> $<variableName>
* *
* @return <entity> * @return <entity>
@ -269,6 +272,7 @@ public function <methodName>(<methodTypeHint>$<variableName>)
'/** '/**
* <description> * <description>
* *
*
* @param <variableType> $<variableName> * @param <variableType> $<variableName>
*/ */
public function <methodName>(<methodTypeHint>$<variableName>) public function <methodName>(<methodTypeHint>$<variableName>)
@ -1173,7 +1177,7 @@ public function __construct()
} }
$replacements = array( $replacements = array(
'<description>' => ucfirst($type) . ' ' . $variableName . ".\n", '<description>' => ucfirst($type) . ' ' . $variableName,
'<methodTypeHint>' => $methodTypeHint, '<methodTypeHint>' => $methodTypeHint,
'<variableType>' => $variableType, '<variableType>' => $variableType,
'<variableName>' => $variableName, '<variableName>' => $variableName,