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 ( 85cdf0...87050d )
by Mark
02:35
created
app/Classes/Library/PageLoading/FrontPageBuilder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
      * We may in future want to parse something so we have this on its
66 66
      * own method.
67 67
      *
68
-     * @return mixed
68
+     * @return string
69 69
      */
70 70
     public function content()
71 71
     {
Please login to merge, or discard this patch.
app/Classes/Library/PageLoading/FrontPageMenu.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,6 @@
 block discarded – undo
56 56
      * Array for return data to be used by front end.
57 57
      *
58 58
      * @param Menu $menu
59
-     * @param bool $boolean
60 59
      * @return array
61 60
      */
62 61
     public function collect(Menu $menu, $status = false)
Please login to merge, or discard this patch.
app/Classes/Library/PageLoading/FrontPageView.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
      * This should be the only method used for returning views. (not errors)
46 46
      *
47
-     * @param null $blade_template
47
+     * @param string $blade_template
48 48
      * @return mixed
49 49
      */
50 50
     public function normal(Page $page, Collection $data, $blade_template = null)
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      *
74 74
      * This should be the only method used for returning errors!
75 75
      * @param Collection $data
76
-     * @param $template
76
+     * @param string $template
77 77
      * @param int $response
78 78
      * @return \Illuminate\Http\Response|\Symfony\Component\HttpFoundation\Response
79 79
      * @throws \Exception
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/Model/Plugin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
     }
113 113
 
114 114
     /**
115
-     * @return mixed
115
+     * @return boolean
116 116
      */
117 117
     public function isInstalled()
118 118
     {
Please login to merge, or discard this patch.
app/Model/Redirect.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     }
114 114
 
115 115
     /**
116
-     * @return Page|mixed
116
+     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
117 117
      */
118 118
     public function fromPage()
119 119
     {
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
     }
122 122
 
123 123
     /**
124
-     * @return Page|mixed
124
+     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
125 125
      */
126 126
     public function toPage()
127 127
     {
Please login to merge, or discard this patch.
app/Modules/Sitemap/Controller.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,7 +65,6 @@  discard block
 block discarded – undo
65 65
     }
66 66
 
67 67
     /**
68
-     * @param PluginRepository $plugins
69 68
      * @return \Illuminate\Contracts\Routing\ResponseFactory|\Symfony\Component\HttpFoundation\Response
70 69
      */
71 70
     public function all()
@@ -96,7 +95,7 @@  discard block
 block discarded – undo
96 95
      * Get the plugin sitemap function and its contents.
97 96
      *
98 97
      * @param Sitemap $plugin
99
-     * @return bool|mixed
98
+     * @return SitemapGenerator
100 99
      */
101 100
     private function sitemap(Sitemap $plugin)
102 101
     {
Please login to merge, or discard this patch.
app/Modules/Updates/Controller.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     }
32 32
 
33 33
     /**
34
-     * @return mixed
34
+     * @return \Illuminate\Contracts\View\View
35 35
      */
36 36
     public function index()
37 37
     {
Please login to merge, or discard this patch.
app/Console/Commands/MakeAccount.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     /**
43 43
      * Execute the console command.
44 44
      *
45
-     * @return mixed
45
+     * @return boolean
46 46
      */
47 47
     public function handle()
48 48
     {
Please login to merge, or discard this patch.