diff --git a/src/Bus/BaseJob.php b/src/Bus/BaseJob.php index a899e1d..dd43316 100644 --- a/src/Bus/BaseJob.php +++ b/src/Bus/BaseJob.php @@ -138,8 +138,6 @@ public function restoreModel($value) */ public function handle() { - event('job.running', $this); - // Determine if this command has a boot method, which is convenient when developer // needs to modify any information on this command before actually running it. if (method_exists($this, 'boot')) { @@ -154,8 +152,6 @@ public function handle() // base on the outcome of the run method, let's run additional callbacks. $this->fireCallbacks($this->status); - event('job.finished', $this); - return $this; }