Skip to content

Instantly share code, notes, and snippets.

@axelitus
Created March 15, 2012 16:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save axelitus/2045001 to your computer and use it in GitHub Desktop.
Save axelitus/2045001 to your computer and use it in GitHub Desktop.
[PHP] FuelPHP: New Controller
<?php
/**
* Name
*
* Description
*
* @package Package
* @extends Controller
*/
class Controller_Name extends Controller
{
/**
* Index
*
* @access public
* @return Response
*/
public function action_index()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment