1
0
mirror of synced 2024-12-14 07:06:04 +03:00

Merge pull request #388 from fixe/patch-3

Added an empty line feed preceding the return statement
This commit is contained in:
Guilherme Blanco 2012-07-03 06:44:51 -07:00
commit f20a95fdc0

View File

@ -200,6 +200,7 @@ public function <methodName>()
public function <methodName>(<methodTypeHint>$<variableName><variableDefault>) public function <methodName>(<methodTypeHint>$<variableName><variableDefault>)
{ {
<spaces>$this-><fieldName> = $<variableName>; <spaces>$this-><fieldName> = $<variableName>;
<spaces>return $this; <spaces>return $this;
}'; }';
@ -216,6 +217,7 @@ public function <methodName>(<methodTypeHint>$<variableName><variableDefault>)
public function <methodName>(<methodTypeHint>$<variableName>) public function <methodName>(<methodTypeHint>$<variableName>)
{ {
<spaces>$this-><fieldName>[] = $<variableName>; <spaces>$this-><fieldName>[] = $<variableName>;
<spaces>return $this; <spaces>return $this;
}'; }';