Cambio a la forma de obtener los indices

This commit is contained in:
2020-05-04 12:58:53 -04:00
parent ac571273f5
commit cf18949409
4 changed files with 46 additions and 3 deletions

View File

@ -0,0 +1,6 @@
<?php
use ProVM\NotariaRaby\Common\Controller\Web\Documentos;
$app->group('/documentos', function($app) {
$app->get('/existe/{documento}', [Documentos::class, 'existe']);
});