Skip to content
This repository was archived by the owner on Dec 11, 2020. It is now read-only.

Commit b87004e

Browse files
committed
SelfHandling is no longer required
1 parent 3b7f7ad commit b87004e

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

src/Feature.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@
66
use Illuminate\Http\Request;
77
use Illuminate\Support\Collection;
88
use App\Domains\Queue\DefaultQueue;
9-
use Illuminate\Contracts\Bus\SelfHandling;
109
use Illuminate\Foundation\Bus\DispatchesJobs;
1110

12-
abstract class Feature implements SelfHandling
11+
abstract class Feature
1312
{
1413
use MarshalTrait;
1514
use DispatchesJobs;

src/Job.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@
22

33
namespace Lucid\Foundation;
44

5-
use Illuminate\Contracts\Bus\SelfHandling;
6-
75
/**
86
* An abstract Job to be extended by every job.
97
* Note that this job is self-handling which
108
* means it will NOT be queued, rather
119
* will have the "handle()" method
1210
* called instead.
1311
*/
14-
abstract class Job implements SelfHandling
12+
abstract class Job
1513
{
1614
}

0 commit comments

Comments
 (0)