Last active
August 29, 2015 14:18
-
-
Save redgluten/16aaab124dd00d3642a4 to your computer and use it in GitHub Desktop.
Sublime Text snippet for creating a new PHP method
This file contains hidden or 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
<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