Merge pull request #740 from codeinabox/phpdoc-getter

Fixed the PHPDoc block for the getter to use @return
This commit is contained in:
Louis Pilfold 2016-05-25 10:57:29 +01:00
commit 3b7c903c35

View File

@ -115,7 +115,7 @@ snippet getter "PHP Class Getter" b
/**
* Getter for $1
*
* ${2:return string}
* @return ${2:string}
*/
public function get${1/\w+\s*/\u$0/}()
{
@ -143,7 +143,7 @@ snippet gs "PHP Class Getter Setter" b
/**
* Getter for $1
*
* return ${2:string}
* @return ${2:string}
*/
public function get${1/\w+\s*/\u$0/}()
{