fix(morelevel): ajout de niveau03 et niveau04
All checks were successful
Cadoles/nineskeletor/pipeline/head This commit looks good

This commit is contained in:
2022-09-27 11:52:49 +02:00
parent 89cb0433c0
commit d1431bcce4
46 changed files with 7163 additions and 3839 deletions

View File

@ -77,7 +77,10 @@ class CronCommand extends Command
$command = $this->getApplication()->find($cron->getCommand());
// Réccuépration des parametres
$jsonparameter = json_decode($cron->getJsonargument(), true);
$jsonparameter = null;
if ($cron->getJsonargument()) {
$jsonparameter = json_decode($cron->getJsonargument(), true);
}
// Formater la chaine de parametre
if (!$jsonparameter) {