7 lines
148 B
PHP
7 lines
148 B
PHP
<?php
|
|
use ProVM\TotalSport\Common\Controller\Web\Galeria;
|
|
|
|
$app->group('/evento/{evento}', function($app) {
|
|
$app->get('[/]', Galeria::class);
|
|
});
|