Skip to content

Instantly share code, notes, and snippets.

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