fix(morelevel): ajout de niveau03 et niveau04
All checks were successful
Cadoles/nineskeletor/pipeline/head This commit looks good
All checks were successful
Cadoles/nineskeletor/pipeline/head This commit looks good
This commit is contained in:
@ -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) {
|
||||
|
Reference in New Issue
Block a user