1 | <?php |
||
2 | |||
3 | namespace Anfischer\Foundation\Feature; |
||
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 | abstract class Feature |
||
10 | { |
||
11 | use MarshalsJobs; |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
12 | use BaseDispatcher; |
||
13 | use DispatchesJobs; |
||
14 | } |
||
15 |