feature/cierres #25

Open
aldarien wants to merge 446 commits from feature/cierres into develop
242 changed files with 764 additions and 7935 deletions
Showing only changes of commit abe37227ce - Show all commits

View File

@ -0,0 +1,10 @@
<?php
$app->group('/external', function($app) {
$files = new FilesystemIterator(implode(DIRECTORY_SEPARATOR, [__DIR__, 'external']));
foreach ($files as $file) {
if ($file->isDir()) {
continue;
}
include_once $file->getRealPath();
}
});