Fixed new line in docblock (247803715b
).
This commit is contained in:
parent
2a80e34179
commit
1378626937
1 changed files with 5 additions and 1 deletions
|
@ -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,
|
||||||
|
|
Loading…
Add table
Reference in a new issue