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