Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Completed
Push — master ( 6db13b...4f93b1 )
by Mark
02:28
created
app/Classes/Email.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,8 +8,8 @@
 block discarded – undo
8 8
 
9 9
 namespace App\Classes;
10 10
 
11
-use Mail;
12 11
 use App\Model\Account;
12
+use Mail;
13 13
 
14 14
 class Email
15 15
 {
Please login to merge, or discard this patch.
app/Classes/PluginManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@
 block discarded – undo
134 134
      * Check the status of a loaded plugin.
135 135
      *
136 136
      * @param array $plugin
137
-     * @param $status
137
+     * @param boolean $status
138 138
      * @return bool
139 139
      */
140 140
     private function checkStatus($plugin, $status)
Please login to merge, or discard this patch.
app/Classes/Repositories/ActivityRepository.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
 namespace App\Classes\Repositories;
10 10
 
11 11
 use App\Model\Activity;
12
-use Illuminate\Support\Collection;
13 12
 use Illuminate\Database\Eloquent\Builder;
13
+use Illuminate\Support\Collection;
14 14
 
15 15
 /**
16 16
  * Class ActivityRepository.
Please login to merge, or discard this patch.
app/Classes/Repositories/PageRepository.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
 namespace App\Classes\Repositories;
10 10
 
11 11
 use App\Model\Page;
12
-use Illuminate\Support\Collection;
13 12
 use Illuminate\Database\Eloquent\Builder;
13
+use Illuminate\Support\Collection;
14 14
 
15 15
 /**
16 16
  * Class PageRepository.
Please login to merge, or discard this patch.
app/Classes/Repositories/SettingsRepository.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
 namespace App\Classes\Repositories;
10 10
 
11 11
 use App\Model\Setting;
12
-use Illuminate\Support\Collection;
13 12
 use Illuminate\Database\Eloquent\Builder;
13
+use Illuminate\Support\Collection;
14 14
 
15 15
 /**
16 16
  * Class SettingsRepository.
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/RegisterController.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Http\Controllers\Auth;
4 4
 
5
-use App\User;
6 5
 use App\Http\Controllers\Controller;
7
-use Illuminate\Support\Facades\Validator;
6
+use App\User;
8 7
 use Illuminate\Foundation\Auth\RegistersUsers;
8
+use Illuminate\Support\Facades\Validator;
9 9
 
10 10
 class RegisterController extends Controller
11 11
 {
Please login to merge, or discard this patch.
app/Http/Controllers/AuthController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,8 +8,8 @@
 block discarded – undo
8 8
 
9 9
 namespace App\Http\Controllers;
10 10
 
11
-use Carbon\Carbon;
12 11
 use App\Model\Account;
12
+use Carbon\Carbon;
13 13
 use Illuminate\Http\Request;
14 14
 
15 15
 /**
Please login to merge, or discard this patch.
app/Http/Middleware/RouteProvider.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,10 +8,10 @@
 block discarded – undo
8 8
 
9 9
 namespace App\Http\Middleware;
10 10
 
11
-use Closure;
11
+use App\Classes\Interfaces\RouteableInterface;
12 12
 use App\Model\Plugin;
13
+use Closure;
13 14
 use Illuminate\Routing\Router;
14
-use App\Classes\Interfaces\RouteableInterface;
15 15
 
16 16
 /**
17 17
  * Class SettingsProvider.
Please login to merge, or discard this patch.
app/Model/Audit.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Model;
4 4
 
5
-use Carbon\Carbon;
6 5
 use App\Classes\Interfaces\AuditInterface;
6
+use Carbon\Carbon;
7 7
 use OwenIt\Auditing\Models\Audit as Auditing;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.