1
0
mirror of synced 2025-02-20 22:23:14 +03:00

Added an empty line feed preceding the return statement

This commit is contained in:
Tiago Ribeiro 2012-07-03 12:57:14 +02:00
parent dd60cb6645
commit bda7310b46

View File

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