Files
money/ws/resources/routes/ws.php

9 lines
194 B
PHP
Raw Normal View History

2021-03-30 16:40:02 -03:00
<?php
$files = new DirectoryIterator(implode(DIRECTORY_SEPARATOR, [__DIR__, 'ws']));
foreach ($files as $file) {
if ($file->isDir()) {
continue;
}
include_once $file->getRealPath();
}