7 lines
199 B
PHP
7 lines
199 B
PHP
<?php
|
|
use Common\Controller\Conecciones;
|
|
|
|
$router = $app->getContainer()->get(\Common\Service\Router::class);
|
|
$router->setController($app->getContainer()->get(Conecciones::class));
|
|
$router->build();
|