Skip to content

Instantly share code, notes, and snippets.

@dgmike
Created May 2, 2010 00:03
Show Gist options
  • Save dgmike/386772 to your computer and use it in GitHub Desktop.
Save dgmike/386772 to your computer and use it in GitHub Desktop.
Como criar um controller
<?php
class Pagina extends Controller
{
/**
* Página Inicial
*
* return void
*/
public function index()
{
// Aqui vai o código
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment