Skip to content

Instantly share code, notes, and snippets.

@Geraint
Last active March 16, 2018 10:08
Show Gist options
  • Save Geraint/fff231998ba8720ce2db385fe1807050 to your computer and use it in GitHub Desktop.
Save Geraint/fff231998ba8720ce2db385fe1807050 to your computer and use it in GitHub Desktop.
Eclipse Template - PHP getter with explicit return type
/** @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