@@ -3,7 +3,6 @@ |
||
3 | 3 | namespace App\Exceptions; |
4 | 4 | |
5 | 5 | use Exception; |
6 | -use Illuminate\Support\Facades\Log; |
|
7 | 6 | |
8 | 7 | class AdminException extends Exception |
9 | 8 | { |
@@ -2,9 +2,7 @@ |
||
2 | 2 | |
3 | 3 | namespace App\Http\Requests; |
4 | 4 | |
5 | -use App\Http\Requests\Request; |
|
6 | 5 | use Illuminate\Foundation\Http\FormRequest; |
7 | -use Illuminate\Support\Facades\Auth; |
|
8 | 6 | |
9 | 7 | class SkillCrudRequest extends FormRequest |
10 | 8 | { |
@@ -3,8 +3,6 @@ |
||
3 | 3 | namespace App\Listeners; |
4 | 4 | |
5 | 5 | use App\Events\ApplicationSaved; |
6 | -use Illuminate\Queue\InteractsWithQueue; |
|
7 | -use Illuminate\Contracts\Queue\ShouldQueue; |
|
8 | 6 | use Illuminate\Support\Facades\Log; |
9 | 7 | use Illuminate\Support\Facades\Auth; |
10 | 8 |
@@ -3,8 +3,6 @@ |
||
3 | 3 | namespace App\Listeners; |
4 | 4 | |
5 | 5 | use App\Events\JobSaved; |
6 | -use Illuminate\Queue\InteractsWithQueue; |
|
7 | -use Illuminate\Contracts\Queue\ShouldQueue; |
|
8 | 6 | use Illuminate\Support\Facades\Log; |
9 | 7 | |
10 | 8 | class JobPublished |
@@ -3,8 +3,6 @@ |
||
3 | 3 | namespace App\Listeners; |
4 | 4 | |
5 | 5 | use App\Events\ApplicationRetrieved; |
6 | -use Illuminate\Queue\InteractsWithQueue; |
|
7 | -use Illuminate\Contracts\Queue\ShouldQueue; |
|
8 | 6 | use Illuminate\Support\Facades\Log; |
9 | 7 | use Illuminate\Support\Facades\Auth; |
10 | 8 |
@@ -3,8 +3,6 @@ |
||
3 | 3 | namespace App\Listeners; |
4 | 4 | |
5 | 5 | use Illuminate\Auth\Events\Login; |
6 | -use Illuminate\Queue\InteractsWithQueue; |
|
7 | -use Illuminate\Contracts\Queue\ShouldQueue; |
|
8 | 6 | use Illuminate\Support\Facades\Log; |
9 | 7 | |
10 | 8 | class LogSuccessfulLogin |
@@ -3,8 +3,6 @@ |
||
3 | 3 | namespace App\Listeners; |
4 | 4 | |
5 | 5 | use App\Events\UserCreated; |
6 | -use Illuminate\Queue\InteractsWithQueue; |
|
7 | -use Illuminate\Contracts\Queue\ShouldQueue; |
|
8 | 6 | use Illuminate\Support\Facades\Log; |
9 | 7 | |
10 | 8 | class LogUserCreated |
@@ -3,8 +3,6 @@ |
||
3 | 3 | namespace App\Listeners; |
4 | 4 | |
5 | 5 | use App\Events\UserUpdated; |
6 | -use Illuminate\Queue\InteractsWithQueue; |
|
7 | -use Illuminate\Contracts\Queue\ShouldQueue; |
|
8 | 6 | use Illuminate\Support\Facades\Log; |
9 | 7 | |
10 | 8 | class LogUserUpdated |
@@ -5,8 +5,6 @@ |
||
5 | 5 | use Illuminate\Bus\Queueable; |
6 | 6 | use Illuminate\Mail\Mailable; |
7 | 7 | use Illuminate\Queue\SerializesModels; |
8 | -use Illuminate\Contracts\Queue\ShouldQueue; |
|
9 | - |
|
10 | 8 | use App\Models\JobPoster; |
11 | 9 | use App\Models\User; |
12 | 10 |