dotar/vim/snippets/php-zend/clac.snippet
2011-11-17 16:00:49 -06:00

21 lines
316 B
Plaintext
Executable File

<?php
/**
* $1Controller
* @package ${2}
* @author ${3:`g:snips_author`}
* @copyright (c) `strftime("%Y")`
*/
class ${1:Index}Controller extends Application_Controller
{
/**
* indexAction
*
* @access public
* @return void
*/
public function indexAction(){
${4:// some code}
}
}