Skip to content

Instantly share code, notes, and snippets.

@lumpysimon
Last active December 15, 2015 05:49
Show Gist options
  • Save lumpysimon/5212018 to your computer and use it in GitHub Desktop.
Save lumpysimon/5212018 to your computer and use it in GitHub Desktop.
Sublime Text snippet: PHP class with __construct function
<snippet>
<content><![CDATA[
defined( 'ABSPATH' ) or die();
\$$1 = new $1;
class $1 {
function __construct() {
$0
}
} // class
$2
]]></content>
<tabTrigger>lclass</tabTrigger>
<scope>source.php</scope>
<description>new class (Lumpy PHP)</description>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment