Skip to content
This repository was archived by the owner on May 12, 2022. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions src/Bus/BaseJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -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')) {
Expand All @@ -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;
}

Expand Down