feature/cierres #31

Merged
aldarien merged 462 commits from feature/cierres into develop 2025-09-11 17:05:18 -03:00
179 changed files with 616 additions and 7736 deletions
Showing only changes of commit c21de2848d - Show all commits

View File

@ -19,7 +19,7 @@ class Schedule
$commands = []; $commands = [];
foreach ($schedule as $line) { foreach ($schedule as $line) {
$line = trim($line); $line = trim($line);
if ($line === '') { if (trim($line) === '' or str_starts_with('#', $line)) {
continue; continue;
} }
$data = $this->parseCommandLine($line); $data = $this->parseCommandLine($line);