Skip to content

Commit

Permalink
Merge pull request #16 from marabesi/master
Browse files Browse the repository at this point in the history
removed extra space
  • Loading branch information
phproberto authored Mar 14, 2019
2 parents 91d378d + 39fc332 commit 3ce0862
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class Resolver {
+ tab + ` * ` + prop.getterDescription() + `\n`
+ (type ? tab + ` *\n` : ``)
+ (type ? tab + ` * @return` + spacesAfterReturn + type + `\n` : ``)
+ tab + ` */ \n`
+ tab + ` */\n`
+ tab + `public function ` + prop.getterName() + `()\n`
+ tab + `{\n`
+ tab + tab + `return $this->` + name + `;\n`
Expand Down Expand Up @@ -164,7 +164,7 @@ class Resolver {
+ (type ? tab + ` * @param` + spacesAfterParam + type + spacesAfterParamVar + `$` + name + (description ? ` ` + description : ``) + `\n` : ``)
+ tab + ` *\n`
+ tab + ` * @return` + spacesAfterReturn + `self\n`
+ tab + ` */ \n`
+ tab + ` */\n`
+ tab + `public function ` + prop.setterName() + `(` + (typeHint ? typeHint + ` ` : ``) + `$` + name + `)\n`
+ tab+ `{\n`
+ tab + tab + `$this->` + name + ` = $` + name + `;\n`
Expand Down

0 comments on commit 3ce0862

Please sign in to comment.