1
0
Fork 0
mirror of https://github.com/archtechx/jobpipeline.git synced 2025-12-12 18:44:04 +00:00

L10 compatibility (#12)

* Bump dependencies for Laravel 10

* Update GitHub Actions for Laravel 10

* drop < L9 support

* use `dispatch_sync` instead of `dispatch_now`

* migrate phpunit configuration

* update matrix format

---------

Co-authored-by: Samuel Štancl <samuel@archte.ch>
This commit is contained in:
Guilherme Saade 2023-02-16 07:43:17 -03:00 committed by GitHub
parent fe0fc363e6
commit bfc53f6dd6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 36 additions and 39 deletions

View file

@ -93,7 +93,7 @@ class JobPipeline implements ShouldQueue
if ($this->shouldBeQueued) {
dispatch($executable);
} else {
dispatch_now($executable);
dispatch_sync($executable);
}
};
}