Implement base notifications support (#77)
* initial implementation of notifications * typehint UUID returns. Fixes that notifications bug
This commit is contained in:
parent
b3ca8a3732
commit
b02df8e610
11 changed files with 176 additions and 28 deletions
|
@ -39,14 +39,14 @@ return [
|
|||
'driver' => 'database',
|
||||
'table' => 'jobs',
|
||||
'queue' => 'default',
|
||||
'expire' => 60,
|
||||
'retry_after' => 60,
|
||||
],
|
||||
|
||||
'beanstalkd' => [
|
||||
'driver' => 'beanstalkd',
|
||||
'host' => 'localhost',
|
||||
'queue' => 'default',
|
||||
'ttr' => 60,
|
||||
'retry_after' => 60,
|
||||
],
|
||||
|
||||
'sqs' => [
|
||||
|
@ -70,7 +70,7 @@ return [
|
|||
'driver' => 'redis',
|
||||
'connection' => 'default',
|
||||
'queue' => 'default',
|
||||
'expire' => 60,
|
||||
'retry_after' => 60,
|
||||
],
|
||||
|
||||
],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue