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 ( 70e47f...dda101 )
by Mark
07:55
created
app/Plugins/Articles/Routes/frontend.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 use App\Classes\Repositories\ArticleCategoryRepository;
4
+use App\Classes\Repositories\ArticleRepository;
5
+use App\Classes\Repositories\PageRepository;
6
+use App\Model\Page;
4 7
 use Illuminate\Support\Facades\Route;
5
-    use App\Model\Page;
6
-    use App\Classes\Repositories\ArticleRepository;
7
-    use App\Classes\Repositories\PageRepository;
8 8
 
9 9
     /*
10 10
     |--------------------------------------------------------------------------
Please login to merge, or discard this patch.
app/Plugins/Newsletters/BackendController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 namespace App\Plugins\Newsletters;
10 10
 
11 11
 use App\Plugins\Newsletters\Model\NewsletterRepository;
12
-use App\Plugins\Newsletters\Model\NewsletterUser;
13 12
 use App\Plugins\PluginEngine;
14 13
 use Illuminate\Http\Request;
15 14
 
Please login to merge, or discard this patch.
app/Plugins/Newsletters/FrontendController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 use App\Classes\Library\PageLoader\Frontpage;
12 12
 use App\Classes\Repositories\MenuRepository;
13 13
 use App\Classes\Repositories\PageRepository;
14
-use App\Model\Page;
15 14
 use App\Plugins\Newsletters\Model\Newsletter;
16 15
 use App\Plugins\Newsletters\Model\NewsletterRepository;
17 16
 use App\Plugins\Newsletters\Model\NewsletterUser;
Please login to merge, or discard this patch.
app/Plugins/Newsletters/NewslettersController.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      * The steps required for this plugin product to fully
37 37
      * integrate into the webservice.
38 38
      *
39
-     * @return bool
39
+     * @return boolean|null
40 40
      */
41 41
     public function install()
42 42
     {
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      * The steps required for this plugin product to fully
48 48
      * remove itself from the webservice.
49 49
      *
50
-     * @return bool
50
+     * @return boolean|null
51 51
      */
52 52
     public function uninstall()
53 53
     {
Please login to merge, or discard this 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\Plugins\Newsletters;
10 10
 
11
-use App\Plugins\PluginHandler;
12 11
 use App\Classes\Interfaces\Installable;
12
+use App\Plugins\PluginHandler;
13 13
 
14 14
 /**
15 15
  * Class NewsletterController.
Please login to merge, or discard this patch.