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 ( 7fd57f...ddf3cc )
by Mark
02:55
created
app/Console/Commands/GeneratePageRoutes.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.
app/Model/Activity.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     protected $guarded = [];
49 49
 
50 50
     /**
51
-     * @return bool|string
51
+     * @return string|false
52 52
      */
53 53
     public function eventName()
54 54
     {
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      * @param int $action
83 83
      * @param Model $model
84 84
      * @param Account|null $account
85
-     * @return mixed
85
+     * @return boolean
86 86
      */
87 87
     public function log(int $action, Model $model, Account $account = null)
88 88
     {
Please login to merge, or discard this patch.
app/Plugins/Menus/BackendController.php 1 patch
Doc Comments   +6 added lines, -9 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      * Display a listing of the resource.
61 61
      *
62 62
      * @param int $group_id
63
-     * @return \Illuminate\Http\Response
63
+     * @return \Illuminate\Contracts\View\View
64 64
      */
65 65
     public function index($group_id = 1)
66 66
     {
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     /**
71 71
      * Show the form for creating a new resource.
72 72
      *
73
-     * @return \Illuminate\Http\Response
73
+     * @return \Illuminate\Contracts\View\View
74 74
      */
75 75
     public function create()
76 76
     {
@@ -111,9 +111,8 @@  discard block
 block discarded – undo
111 111
     /**
112 112
      * Show the form for editing the specified resource.
113 113
      *
114
-     * @param MenuRepository $repository
115 114
      * @param  int $id
116
-     * @return \Illuminate\Http\Response
115
+     * @return \Illuminate\Contracts\View\View
117 116
      */
118 117
     public function edit($id)
119 118
     {
@@ -124,9 +123,8 @@  discard block
 block discarded – undo
124 123
      * Update the specified resource in storage.
125 124
      *
126 125
      * @param Request $request
127
-     * @param MenuRepository $repository
128 126
      * @param int $id
129
-     * @return \Illuminate\Http\Response
127
+     * @return \Illuminate\Http\RedirectResponse
130 128
      */
131 129
     public function update(Request $request, $id)
132 130
     {
@@ -145,8 +143,7 @@  discard block
 block discarded – undo
145 143
      * Remove the specified resource from storage.
146 144
      *
147 145
      * @param  int $id
148
-     * @param MenuRepository $repository
149
-     * @return bool|null
146
+     * @return \Illuminate\Http\RedirectResponse
150 147
      * @throws \Exception
151 148
      */
152 149
     public function destroy($id)
@@ -192,7 +189,7 @@  discard block
 block discarded – undo
192 189
      *
193 190
      * @param Request $request
194 191
      * @param Menu $menu
195
-     * @return bool
192
+     * @return boolean|null
196 193
      */
197 194
     private function save(Request $request, Menu $menu)
198 195
     {
Please login to merge, or discard this patch.