From 391fc357be20839446d8f36939348ec6db2f42f5 Mon Sep 17 00:00:00 2001 From: Rifki Alhuraibi Date: Fri, 23 Oct 2020 05:21:07 +0700 Subject: [PATCH] fix typo --- src/Bus/BaseJob.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bus/BaseJob.php b/src/Bus/BaseJob.php index 45897c4..a899e1d 100644 --- a/src/Bus/BaseJob.php +++ b/src/Bus/BaseJob.php @@ -225,7 +225,7 @@ protected function fireCallbacks($event) /* * @var $callback SerializableClosure */ - call_user_func_array($callback->getClosuse(), [$this]); + call_user_func_array($callback->getClosure(), [$this]); } } }