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