Fixed new line in docblock (247803715bd7e5ded75e25dbbb4eb2c5b7fbd2f2).
This commit is contained in:
parent
2a80e34179
commit
1378626937
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user