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
Pull Request — master (#2032)
by Cristian
09:07
created
src/app/Http/Controllers/Auth/ResetPasswordController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,6 @@
 block discarded – undo
27 27
     /**
28 28
      * Get the path the user should be redirected to after password reset.
29 29
      *
30
-     * @param \Illuminate\Http\Request $request
31 30
      *
32 31
      * @return string
33 32
      */
Please login to merge, or discard this patch.
src/app/Http/Middleware/CheckIfAdmin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     /**
30 30
      * Answer to unauthorized access request.
31 31
      *
32
-     * @param [type] $request [description]
32
+     * @param \Illuminate\Http\Request $request [description]
33 33
      *
34 34
      * @return [type] [description]
35 35
      */
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Access.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     /**
51 51
      * Check if any operations are allowed for a Crud Panel. Return false if not.
52 52
      *
53
-     * @param array $operation_array
53
+     * @param boolean $operation_array
54 54
      * @return bool
55 55
      */
56 56
     public function hasAccessToAny($operation_array)
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     /**
68 68
      * Check if all operations are allowed for a Crud Panel. Return false if not.
69 69
      *
70
-     * @param array $operation_array Permissions.
70
+     * @param string $operation_array Permissions.
71 71
      * @return bool
72 72
      */
73 73
     public function hasAccessToAll($operation_array)
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/AutoFocus.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -12,6 +12,9 @@
 block discarded – undo
12 12
         return $this->getOperationSetting('autoFocusOnFirstField');
13 13
     }
14 14
 
15
+    /**
16
+     * @param boolean $value
17
+     */
15 18
     public function setAutoFocusOnFirstField($value)
16 19
     {
17 20
         return $this->setOperationSetting('autoFocusOnFirstField', (bool) $value);
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Buttons.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -95,6 +95,12 @@
 block discarded – undo
95 95
     public $type = 'view';
96 96
     public $content;
97 97
 
98
+    /**
99
+     * @param string $stack
100
+     * @param string $name
101
+     * @param string $type
102
+     * @param string $content
103
+     */
98 104
     public function __construct($stack, $name, $type, $content)
99 105
     {
100 106
         $this->stack = $stack;
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Columns.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
 
161 161
     /**
162 162
      * Move this column to be first in the columns list.
163
-     * @return bool|null
163
+     * @return false|null
164 164
      */
165 165
     public function makeFirstColumn()
166 166
     {
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
     /**
238 238
      * Remove a column from the CRUD panel by name.
239 239
      *
240
-     * @param string $column The column key.
240
+     * @param string $columnKey The column key.
241 241
      */
242 242
     public function removeColumn($columnKey)
243 243
     {
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Create.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@
 block discarded – undo
159 159
      * @param \Illuminate\Database\Eloquent\Model $item          The current CRUD model.
160 160
      * @param array                               $formattedData The form data.
161 161
      *
162
-     * @return bool|null
162
+     * @return false|null
163 163
      */
164 164
     private function createRelationsForItem($item, $formattedData)
165 165
     {
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Delete.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      *
16 16
      * @param  int $id The id of the item to be deleted.
17 17
      *
18
-     * @return bool True if the item was deleted.
18
+     * @return string True if the item was deleted.
19 19
      *
20 20
      * @throws \Illuminate\Database\Eloquent\ModelNotFoundException if the model was not found.
21 21
      *
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/FakeFields.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,6 @@
 block discarded – undo
10 10
      * plus the '_token' and 'redirect_after_save' variables.
11 11
      *
12 12
      * @param array    $requestInput The request input.
13
-     * @param string   $form         The CRUD form. Can be 'create' or 'update' . Default is 'create'.
14
-     * @param int|bool $id           The CRUD entry id in the case of the 'update' form.
15 13
      *
16 14
      * @see \Illuminate\Http\Request::all() For an example on how to get the request input.
17 15
      *
Please login to merge, or discard this patch.