Skip to content

Instantly share code, notes, and snippets.

@redgluten
Last active August 29, 2015 14:18
Show Gist options
  • Save redgluten/16aaab124dd00d3642a4 to your computer and use it in GitHub Desktop.
Save redgluten/16aaab124dd00d3642a4 to your computer and use it in GitHub Desktop.
Sublime Text snippet for creating a new PHP method
<snippet>
<content><![CDATA[
${1:public} function ${2:methodName}(${3:argument})
{
${4:// code}
}
]]></content>
<tabTrigger>meth</tabTrigger>
<scope>source.php</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment