Files
oficial/cli/resources/commands/proyectos.php
2023-11-25 00:56:18 -03:00

10 lines
231 B
PHP

<?php
$folder = implode(DIRECTORY_SEPARATOR, [__DIR__, 'proyectos']);
$files = new FilesystemIterator($folder);
foreach ($files as $file) {
if ($file->isDir()) {
continue;
}
include_once $file->getRealPath();
}