fix syntax error
This commit is contained in:
parent
3469aeef93
commit
221815fb7e
|
@ -27,7 +27,7 @@ var echo = new Echo({
|
|||
echo.channel('jobs')
|
||||
.listen('\\App\\Lib\\Events\\JobStarted', (e) => handleJobEvent(e, 'success'))
|
||||
.listen('\\App\\Lib\\Events\\JobFinished', (e) => handleJobEvent(e, 'success'))
|
||||
.listen('\\App\\Lib\\Events\\JobFailed', (e) => handleJobEvent(e, 'error'));
|
||||
.listen('\\App\\Lib\\Events\\JobFailed', (e) => handleJobEvent(e, 'error'))
|
||||
.listen('\\App\\Lib\\Events\\Succeeded', (e) => handleJobEvent(e, 'success'));
|
||||
|
||||
export default echo;
|
||||
|
|
Loading…
Reference in New Issue