Files
oficial/cli/resources/commands/ventas.php

10 lines
228 B
PHP
Raw Normal View History

2023-11-25 00:56:18 -03:00
<?php
$folder = implode(DIRECTORY_SEPARATOR, [__DIR__, 'ventas']);
$files = new FilesystemIterator($folder);
foreach ($files as $file) {
if ($file->isDir()) {
continue;
}
include_once $file->getRealPath();
}