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 (#943)
by Pascal
02:48
created
src/resources/views/fields/datetime.blade.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 <?php
4 4
 // if the column has been cast to Carbon or Date (using attribute casting)
5 5
 // get the value as a date string
6
-if (isset($field['value']) && ( $field['value'] instanceof \Carbon\Carbon || $field['value'] instanceof \Jenssegers\Date\Date )) {
6
+if (isset($field['value']) && ($field['value'] instanceof \Carbon\Carbon || $field['value'] instanceof \Jenssegers\Date\Date)) {
7 7
     $field['value'] = $field['value']->toDateTimeString();
8 8
 }
9 9
 ?>
Please login to merge, or discard this patch.
src/resources/views/fields/date_picker.blade.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,11 +3,11 @@
 block discarded – undo
3 3
 <?php
4 4
     // if the column has been cast to Carbon or Date (using attribute casting)
5 5
     // get the value as a date string
6
-    if (isset($field['value']) && ( $field['value'] instanceof \Carbon\Carbon || $field['value'] instanceof \Jenssegers\Date\Date )) {
6
+    if (isset($field['value']) && ($field['value'] instanceof \Carbon\Carbon || $field['value'] instanceof \Jenssegers\Date\Date)) {
7 7
         $field['value'] = $field['value']->format('Y-m-d');
8 8
     }
9 9
 
10
-    $field_language = isset($field['date_picker_options']['language'])?$field['date_picker_options']['language']:\App::getLocale();
10
+    $field_language = isset($field['date_picker_options']['language']) ? $field['date_picker_options']['language'] : \App::getLocale();
11 11
 ?>
12 12
 
13 13
 <div @include('crud::inc.field_wrapper_attributes') >
Please login to merge, or discard this patch.
src/resources/views/fields/table.blade.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
     $min = isset($field['min']) && (int) $field['min'] > 0 ? $field['min'] : -1;
6 6
     $item_name = strtolower(isset($field['entity_singular']) && !empty($field['entity_singular']) ? $field['entity_singular'] : $field['label']);
7 7
 
8
-    $items = old($field['name']) ? (old($field['name'])) : (isset($field['value']) ? ($field['value']) : (isset($field['default']) ? ($field['default']) : '' ));
8
+    $items = old($field['name']) ? (old($field['name'])) : (isset($field['value']) ? ($field['value']) : (isset($field['default']) ? ($field['default']) : ''));
9 9
 
10 10
     // make sure not matter the attribute casting
11 11
     // the $items variable contains a properly defined JSON
Please login to merge, or discard this patch.
src/resources/views/reorder.blade.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,10 +76,10 @@
 block discarded – undo
76 76
                 <ol class="sortable">
77 77
                 <?php
78 78
                     $all_entries = collect($entries->all())->sortBy('lft')->keyBy($crud->getModel()->getKeyName());
79
-                    $root_entries = $all_entries->filter(function ($item) {
79
+                    $root_entries = $all_entries->filter(function($item) {
80 80
                         return $item->parent_id == 0;
81 81
                     });
82
-                    foreach ($root_entries as $key => $entry){
82
+                    foreach ($root_entries as $key => $entry) {
83 83
                         $root_entries[$key] = tree_element($entry, $key, $all_entries, $crud);
84 84
                     }
85 85
                 ?>
Please login to merge, or discard this patch.
src/PanelTraits/Create.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
     {
88 88
         $all_relation_fields = $this->getRelationFields($form);
89 89
 
90
-        return array_where($all_relation_fields, function ($value, $key) {
90
+        return array_where($all_relation_fields, function($value, $key) {
91 91
             return isset($value['pivot']) && $value['pivot'];
92 92
         });
93 93
     }
Please login to merge, or discard this patch.
src/PanelTraits/Update.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
         foreach ($fields as $k => $field) {
48 48
             // set the value
49
-            if (! isset($fields[$k]['value'])) {
49
+            if (!isset($fields[$k]['value'])) {
50 50
                 if (isset($field['subfields'])) {
51 51
                     $fields[$k]['value'] = [];
52 52
                     foreach ($field['subfields'] as $key => $subfield) {
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         }
60 60
 
61 61
         // always have a hidden input for the entry id
62
-        if (! array_key_exists('id', $fields)) {
62
+        if (!array_key_exists('id', $fields)) {
63 63
             $fields['id'] = [
64 64
                 'name'  => $entry->getKeyName(),
65 65
                 'value' => $entry->getKey(),
Please login to merge, or discard this patch.
src/CrudTrait.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
         // register the enum column type, because Doctrine doesn't support it
53 53
         $conn->getDoctrineSchemaManager()->getDatabasePlatform()->registerDoctrineTypeMapping('enum', 'string');
54 54
 
55
-        return ! $conn->getDoctrineColumn($table, $column_name)->getNotnull();
55
+        return !$conn->getDoctrineColumn($table, $column_name)->getNotnull();
56 56
     }
57 57
 
58 58
     /*
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         foreach ($columns as $key => $column) {
72 72
             $column_contents = $this->{$column};
73 73
 
74
-            if (! is_object($this->{$column})) {
74
+            if (!is_object($this->{$column})) {
75 75
                 $column_contents = json_decode($this->{$column});
76 76
             }
77 77
 
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     {
95 95
         $model = '\\'.get_class($this);
96 96
 
97
-        if (! count($columns)) {
97
+        if (!count($columns)) {
98 98
             $columns = (property_exists($model, 'fakeColumns')) ? $this->fakeColumns : ['extras'];
99 99
         }
100 100
 
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
             $attribute_value = (array) $this->{$attribute_name};
185 185
             foreach ($files_to_clear as $key => $filename) {
186 186
                 \Storage::disk($disk)->delete($filename);
187
-                $attribute_value = array_where($attribute_value, function ($value, $key) use ($filename) {
187
+                $attribute_value = array_where($attribute_value, function($value, $key) use ($filename) {
188 188
                     return $value != $filename;
189 189
                 });
190 190
             }
Please login to merge, or discard this patch.
src/ModelTraits/SpatieTranslatable/SlugService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
      */
50 50
     protected function makeSlugUnique($slug, array $config, $attribute)
51 51
     {
52
-        if (! $config['unique']) {
52
+        if (!$config['unique']) {
53 53
             return $slug;
54 54
         }
55 55
 
Please login to merge, or discard this patch.
src/ModelTraits/SpatieTranslatable/Sluggable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
         $separator = $config['separator'];
48 48
         $attribute = $attribute.'->'.$this->getLocale();
49 49
 
50
-        return $query->where(function (Builder $q) use ($attribute, $slug, $separator) {
50
+        return $query->where(function(Builder $q) use ($attribute, $slug, $separator) {
51 51
             $q->where($attribute, '=', $slug)
52 52
                 ->orWhere($attribute, 'LIKE', $slug.$separator.'%');
53 53
         });
Please login to merge, or discard this patch.