17 lines
301 B
PHP
17 lines
301 B
PHP
|
<?php
|
||
|
use ProVM\NotariaRaby\Common\Controller\Web\Home;
|
||
|
|
||
|
$folder = implode(DIRECTORY_SEPARATOR, [
|
||
|
__DIR__,
|
||
|
'web'
|
||
|
]);
|
||
|
$files = new DirectoryIterator($folder);
|
||
|
foreach ($files as $file) {
|
||
|
if ($file->isDir()) {
|
||
|
continue;
|
||
|
}
|
||
|
include_once $file->getRealPath();
|
||
|
}
|
||
|
|
||
|
$app->get('/', Home::class);
|