[AntonyAntonio] - Add initial 'ticket/create' controller [skip ci]

This commit is contained in:
Ivan Diaz 2016-06-17 16:28:38 -03:00
parent 220ff697f8
commit c4341002ef
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,9 @@
<?php
include 'ticket/create.php';
$ticketControllers = new ControllerGroup();
$ticketControllers->setGroupPath('/ticket');
$ticketControllers->addController(new CreateController);
$ticketControllers->finalize();

View File

@ -0,0 +1,9 @@
<?php
class CreateController extends Controller {
const PATH = '/create';
public function handler(){
Response::respondError('TEST');
}
}