Skip to content

Instantly share code, notes, and snippets.

@ManInTheBox
Created October 5, 2015 13:45
Show Gist options
  • Save ManInTheBox/b554f5bdb53a5047cf3d to your computer and use it in GitHub Desktop.
Save ManInTheBox/b554f5bdb53a5047cf3d to your computer and use it in GitHub Desktop.
Sublime Text PHP getter snippet
<snippet>
<content><![CDATA[
public function get${1/(\w)/(\u$1)/}()
{
return \$this->$1;
}
]]></content>
<tabTrigger>getter</tabTrigger>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment