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/ArticlesController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
      * The steps required for this plugin product to fully
60 60
      * remove itself from the webservice.
61 61
      *
62
-     * @return bool
62
+     * @return boolean|null
63 63
      * @throws \Exception
64 64
      */
65 65
     public function uninstall()
Please login to merge, or discard this patch.
app/Http/Controllers/PageController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
     /**
46 46
      * Redirects must use a controller to handle the parameter, as they require a specified target.
47
-     * @return mixed
47
+     * @return \Illuminate\Http\RedirectResponse
48 48
      */
49 49
     public function redirect()
50 50
     {
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     /**
55 55
      * Standard page views are once that use the URL as the designated target.
56 56
      *
57
-     * @return mixed
57
+     * @return \Illuminate\Http\Response
58 58
      * @throws \Exception
59 59
      * @internal param FrontPageLoader $pageLoader
60 60
      */
Please login to merge, or discard this patch.
app/Plugins/Articles/BackendController.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      *
71 71
      * @param Article $article
72 72
      * @param  \Illuminate\Http\Request $request
73
-     * @return \Illuminate\Http\Response
73
+     * @return \Illuminate\Http\RedirectResponse
74 74
      */
75 75
     public function store(Article $article, Request $request)
76 76
     {
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
      *
114 114
      * @param  \Illuminate\Http\Request $request
115 115
      * @param $slug
116
-     * @return \Illuminate\Http\Response
116
+     * @return \Illuminate\Http\RedirectResponse
117 117
      * @internal param int $id
118 118
      */
119 119
     public function update(Request $request, $slug)
@@ -130,8 +130,7 @@  discard block
 block discarded – undo
130 130
     /**
131 131
      * Remove the specified resource from storage.
132 132
      *
133
-     * @param  int  $id
134
-     * @return \Illuminate\Http\Response
133
+     * @return \Illuminate\Http\RedirectResponse
135 134
      */
136 135
     public function destroy($slug)
137 136
     {
Please login to merge, or discard this patch.
app/Plugins/Articles/FrontendController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     }
50 50
 
51 51
     /**
52
-     * @return mixed
52
+     * @return \Illuminate\Support\Collection
53 53
      */
54 54
     private function navigationData()
55 55
     {
Please login to merge, or discard this patch.
app/Plugins/Newsletters/NewslettersController.php 1 patch
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.