Last active
December 24, 2015 06:39
-
-
Save marcosfreitas/6758837 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace controlador; | |
require('../Modulo.php'); | |
namespace controlador\aluno; | |
/* | |
* http://www.meusite.com.br/aluno/matricula/nova/ namespace: controlador\aluno, classe: Matricula, método: nova | |
*/ | |
class Matricula extends Modulo { | |
public function __construct() { | |
parent::__construct(); | |
} | |
public function nova() { | |
/** | |
* realizar nova matricula | |
*/ | |
#Facil::despachar("novaMatricula"); | |
} | |
public function rematricula() { | |
/** | |
* realizar Rematricula | |
*/ | |
# Facil::despachar("rematricula"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment