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 (#157)
by Owen
03:20
created
src/PanelTraits/FakeColumns.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,20 +29,20 @@
 block discarded – undo
29 29
             if (isset($fields[$k]['fake']) && $fields[$k]['fake'] == true) {
30 30
                 // add it to the request in its appropriate variable - the one defined, if defined
31 31
                 if (isset($fields[$k]['store_in'])) {
32
-                    if (! in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
32
+                    if (!in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
33 33
                         array_push($fake_field_columns_to_encode, $fields[$k]['store_in']);
34 34
                     }
35 35
                 } else {
36 36
                     //otherwise in the one defined in the $crud variable
37 37
 
38
-                    if (! in_array('extras', $fake_field_columns_to_encode, true)) {
38
+                    if (!in_array('extras', $fake_field_columns_to_encode, true)) {
39 39
                         array_push($fake_field_columns_to_encode, 'extras');
40 40
                     }
41 41
                 }
42 42
             }
43 43
         }
44 44
 
45
-        if (! count($fake_field_columns_to_encode)) {
45
+        if (!count($fake_field_columns_to_encode)) {
46 46
             return ['extras'];
47 47
         }
48 48
 
Please login to merge, or discard this patch.
src/PanelTraits/FakeFields.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
                     // remove the fake field
42 42
                     array_pull($request, $fields[$k]['name']);
43 43
 
44
-                    if (! in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
44
+                    if (!in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
45 45
                         array_push($fake_field_columns_to_encode, $fields[$k]['store_in']);
46 46
                     }
47 47
                 } else {
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
                     // remove the fake field
53 53
                     array_pull($request, $fields[$k]['name']);
54 54
 
55
-                    if (! in_array('extras', $fake_field_columns_to_encode, true)) {
55
+                    if (!in_array('extras', $fake_field_columns_to_encode, true)) {
56 56
                         array_push($fake_field_columns_to_encode, 'extras');
57 57
                     }
58 58
                 }
Please login to merge, or discard this patch.
src/resources/views/columns/check.blade.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 {{-- checkbox with loose false/null/0 checking --}}
2 2
 <?php
3
-	$icon = "fa-check-square-o";
4
-	if (strip_tags($entry->{$column['name']}) == false)
5
-	{
6
-		$icon = "fa-square-o";
7
-	}
3
+    $icon = "fa-check-square-o";
4
+    if (strip_tags($entry->{$column['name']}) == false)
5
+    {
6
+        $icon = "fa-square-o";
7
+    }
8 8
 ?>
9 9
 
10 10
 <td>
Please login to merge, or discard this patch.
src/resources/views/columns/model_function_attribute.blade.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 {{-- custom return value via attribute --}}
2 2
 <td>
3 3
 	<?php
4
-	    echo $entry->{$column['function_name']}()->{$column['attribute']};
4
+        echo $entry->{$column['function_name']}()->{$column['attribute']};
5 5
     ?>
6 6
 </td>
7 7
\ No newline at end of file
Please login to merge, or discard this patch.
src/resources/views/columns/select.blade.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 {{-- single relationships (1-1, 1-n) --}}
2 2
 <td>
3 3
 	<?php
4
-		if ($entry->{$column['entity']}()->getResults()) {
5
-	    	echo $entry->{$column['entity']}()->getResults()->{$column['attribute']};
6
-	    }
7
-	?>
4
+        if ($entry->{$column['entity']}()->getResults()) {
5
+            echo $entry->{$column['entity']}()->getResults()->{$column['attribute']};
6
+        }
7
+    ?>
8 8
 </td>
9 9
\ No newline at end of file
Please login to merge, or discard this patch.
src/resources/views/columns/model_function.blade.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 {{-- custom return value --}}
2 2
 <td>
3 3
 	<?php
4
-	    echo $entry->{$column['function_name']}();
4
+        echo $entry->{$column['function_name']}();
5 5
     ?>
6 6
 </td>
7 7
\ No newline at end of file
Please login to merge, or discard this patch.
src/PanelTraits/AutoSet.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     {
17 17
         $this->getDbColumnTypes();
18 18
 
19
-        array_map(function ($field) {
19
+        array_map(function($field) {
20 20
             // $this->labels[$field] = $this->makeLabel($field);
21 21
 
22 22
             $new_field = [
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
             $this->create_fields[$field] = $new_field;
31 31
             $this->update_fields[$field] = $new_field;
32 32
 
33
-            if (! in_array($field, $this->model->getHidden())) {
33
+            if (!in_array($field, $this->model->getHidden())) {
34 34
                 $this->columns[$field] = [
35 35
                     'name'  => $field,
36 36
                     'label' => ucfirst($field),
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      */
64 64
     public function getFieldTypeFromDbColumnType($field)
65 65
     {
66
-        if (! array_key_exists($field, $this->db_column_types)) {
66
+        if (!array_key_exists($field, $this->db_column_types)) {
67 67
             return 'text';
68 68
         }
69 69
 
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
         $columns = \Schema::getColumnListing($this->model->getTable());
145 145
         $fillable = $this->model->getFillable();
146 146
 
147
-        if (! empty($fillable)) {
147
+        if (!empty($fillable)) {
148 148
             $columns = array_intersect($columns, $fillable);
149 149
         }
150 150
 
Please login to merge, or discard this patch.
src/resources/views/fields/date.blade.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 <?php
5 5
     // if the column has been cast to Carbon or Date (using attribute casting)
6 6
     // get the value as a date string
7
-    if (isset($field['value']) && ( $field['value'] instanceof \Carbon\Carbon || $field['value'] instanceof \Jenssegers\Date\Date ))
7
+    if (isset($field['value']) && ($field['value'] instanceof \Carbon\Carbon || $field['value'] instanceof \Jenssegers\Date\Date))
8 8
     {
9 9
         $field['value'] = $field['value']->toDateString();
10 10
     }
Please login to merge, or discard this patch.
src/PanelTraits/Buttons.php 2 patches
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.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,14 +76,14 @@
 block discarded – undo
76 76
 
77 77
     public function removeButton($name)
78 78
     {
79
-        $this->buttons = $this->buttons->reject(function ($button) use ($name) {
79
+        $this->buttons = $this->buttons->reject(function($button) use ($name) {
80 80
             return $button->name == $name;
81 81
         });
82 82
     }
83 83
 
84 84
     public function removeButtonFromStack($name, $stack)
85 85
     {
86
-        $this->buttons = $this->buttons->reject(function ($button) use ($name, $stack) {
86
+        $this->buttons = $this->buttons->reject(function($button) use ($name, $stack) {
87 87
             return $button->name == $name && $button->stack == $stack;
88 88
         });
89 89
     }
Please login to merge, or discard this patch.