Skip to content

Commit a8e9b65

Browse files
committed
FIx Return Dispatch
1 parent cc0bca9 commit a8e9b65

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
vendor/*
22
composer.lock
3-
.idea/*
3+
.idea/*
4+
.history/*

src/AbstractJob.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ final public function dispatch()
6060
$this->onConnection($connectionName);
6161
}
6262

63-
dispatch($this->onQueue($this->getName()));
63+
return dispatch($this->onQueue($this->getName()));
6464
}
6565

6666
final public function setProps($props)

0 commit comments

Comments
 (0)