1
0
mirror of synced 2025-02-20 22:23:14 +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>
*
*
* @return <variableType>
*/
public function <methodName>()
@ -233,6 +234,7 @@ public function <methodName>()
'/**
* <description>
*
*
* @param <variableType> $<variableName>
*
* @return <entity>
@ -251,6 +253,7 @@ public function <methodName>(<methodTypeHint>$<variableName><variableDefault>)
'/**
* <description>
*
*
* @param <variableType> $<variableName>
*
* @return <entity>
@ -269,6 +272,7 @@ public function <methodName>(<methodTypeHint>$<variableName>)
'/**
* <description>
*
*
* @param <variableType> $<variableName>
*/
public function <methodName>(<methodTypeHint>$<variableName>)
@ -1173,7 +1177,7 @@ public function __construct()
}
$replacements = array(
'<description>' => ucfirst($type) . ' ' . $variableName . ".\n",
'<description>' => ucfirst($type) . ' ' . $variableName,
'<methodTypeHint>' => $methodTypeHint,
'<variableType>' => $variableType,
'<variableName>' => $variableName,