Files
contabilidad/api/setup/router.php
2021-07-27 22:29:56 -04:00

10 lines
246 B
PHP

<?php
$folder = $app->getContainer()->get('folders')->routes;
$files = new DirectoryIterator($folder);
foreach ($files as $file) {
if ($file->isDir() or $file->getExtension() != 'php') {
continue;
}
include_once $file->getRealPath();
}