anfischer /
laravel-foundation
| 1 | <?php |
||
| 2 | |||
| 3 | namespace Anfischer\Foundation\Operation; |
||
| 4 | |||
| 5 | use Anfischer\Foundation\Job\Concerns\DispatchesJobs; |
||
| 6 | use Anfischer\Foundation\Job\Concerns\MarshalsJobs; |
||
| 7 | use Illuminate\Foundation\Bus\DispatchesJobs as BaseDispatcher; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * An abstract Operation to be extended by every self handling operation. |
||
| 11 | */ |
||
| 12 | abstract class Operation |
||
| 13 | { |
||
| 14 | use MarshalsJobs; |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 15 | use BaseDispatcher; |
||
| 16 | use DispatchesJobs; |
||
| 17 | } |
||
| 18 |