dotar/vim/snippets/php/class.snippet

12 lines
114 B
Plaintext
Raw Normal View History

2011-11-18 05:45:33 +08:00
/**
* ${1}
*/
class ${2:ClassName}
{
${3}
function ${4:__construct}(${5:$argument})
{
${6:// code...}
}
}