config/sublime/Packages/PHP/Constructor.sublime-snippet
2012-08-01 21:04:05 -07:00

8 lines
260 B
XML

<snippet>
<content><![CDATA[function __construct(${1:\$${2:foo}${3: = ${4:null}}}) {
${2/.+/$this->$0 = \$$0;/}$0
}]]></content>
<tabTrigger>con</tabTrigger>
<scope>source.php</scope>
<description>function __construct</description>
</snippet>