From 0510116ea2290af328ebe3860c3a0c0e3955fced Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mustafa=20Hayri=20=C3=9CNE=C5=9E=C4=B0?= Date: Wed, 20 Jan 2021 11:26:52 +0300 Subject: [PATCH] default value bug fixed. --- src/CrontabInput.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CrontabInput.php b/src/CrontabInput.php index ab537e9..8d0e93d 100644 --- a/src/CrontabInput.php +++ b/src/CrontabInput.php @@ -137,7 +137,7 @@ public function setLanguage() 'language' => $this->language, 'tabs' => $this->tabs, 'type' => $this->tab, - 'cronExpression' => $this->value ?? '*/1 * * * *' + 'cronExpression' => $this->value ] ); }