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