feature/cierres #25

Open
aldarien wants to merge 446 commits from feature/cierres into develop
101 changed files with 410 additions and 2886 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);