Last active
March 16, 2018 10:08
-
-
Save Geraint/fff231998ba8720ce2db385fe1807050 to your computer and use it in GitHub Desktop.
Eclipse Template - PHP getter with explicit return type
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @var ${type} */ | |
private $$${property}; | |
public function get${propertyCapital}() : ${type} | |
{ | |
return $$this->${property}; | |
} | |
${cursor} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment