Skip to content

Commit

Permalink
Merge pull request #388 from fixe/patch-3
Browse files Browse the repository at this point in the history
Added an empty line feed preceding the return statement
  • Loading branch information
guilhermeblanco committed Jul 3, 2012
2 parents dd60cb6 + bda7310 commit f20a95f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/Doctrine/ORM/Tools/EntityGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ public function <methodName>()
public function <methodName>(<methodTypeHint>$<variableName><variableDefault>)
{
<spaces>$this-><fieldName> = $<variableName>;
<spaces>return $this;
}';

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

Expand Down

0 comments on commit f20a95f

Please sign in to comment.