Test Setup Failed
Push — feature/word_counter ( 45e6a8...1e9fcb )
by Tristan
14:34
created
app/Exceptions/AdminException.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     /**
53 53
      * Override, custom exception doesn't return a status code.
54 54
      *
55
-     * @return mixed
55
+     * @return integer
56 56
      */
57 57
     public function getStatusCode()
58 58
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.
app/Http/Middleware/CheckIfAdmin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     /**
29 29
      * Answer to unauthorized access request.
30 30
      *
31
-     * @param [type] $request [description]
31
+     * @param \Illuminate\Http\Request $request [description]
32 32
      *
33 33
      * @return [type] [description]
34 34
      */
Please login to merge, or discard this patch.
app/Http/Requests/SkillCrudRequest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,7 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.
app/Listeners/ApplicationStatusChanged.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
app/Listeners/JobPublished.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
app/Listeners/LogApplicationRetrieved.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     /**
24 24
      * Handle the event.
25 25
      *
26
-     * @param  AppliationRetrieved  $event
26
+     * @param  ApplicationRetrieved  $event
27 27
      * @return void
28 28
      */
29 29
     public function handle(ApplicationRetrieved $event)
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
app/Listeners/LogSuccessfulLogin.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
app/Listeners/LogUserCreated.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
app/Listeners/LogUserUpdated.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
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
Please login to merge, or discard this patch.