CLI
This commit is contained in:
9
cli/resources/commands/proyectos.php
Normal file
9
cli/resources/commands/proyectos.php
Normal file
@ -0,0 +1,9 @@
|
||||
<?php
|
||||
$folder = implode(DIRECTORY_SEPARATOR, [__DIR__, 'proyectos']);
|
||||
$files = new FilesystemIterator($folder);
|
||||
foreach ($files as $file) {
|
||||
if ($file->isDir()) {
|
||||
continue;
|
||||
}
|
||||
include_once $file->getRealPath();
|
||||
}
|
Reference in New Issue
Block a user