Skip to content

Instantly share code, notes, and snippets.

@jasonrobertfox
Created December 30, 2012 01:07
Show Gist options
  • Save jasonrobertfox/4410350 to your computer and use it in GitHub Desktop.
Save jasonrobertfox/4410350 to your computer and use it in GitHub Desktop.
Sublime Snippet: PHP Class
<snippet>
<content><![CDATA[
namespace ${1:namespace};
/**
* @package ${1:namespace}
*/
class ${TM_FILENAME/(.+)\..+|.*/$1/:name}${4: extends ${5:class}}
{
${0}
}
]]></content>
<tabTrigger>php-class</tabTrigger>
<scope>source.php</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment