Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | function ___loadApi() { |
||
38 | # Preparar la API |
||
39 | $app = new Silex\Application(); |
||
40 | unset($app['exception_handler']); |
||
41 | |||
42 | # Verbos HTTP |
||
43 | require 'controllers/ini.app.php'; |
||
44 | require 'controllers/get.controllers.php'; |
||
45 | require 'controllers/post.controllers.php'; |
||
46 | |||
47 | $app->run(); |
||
48 | } |
||
61 | } |