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 (#382)
by Cristian
03:02
created
src/PanelTraits/Columns.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     public function addColumn($column)
55 55
     {
56 56
         // if a string was passed, not an array, change it to an array
57
-        if (! is_array($column)) {
57
+        if (!is_array($column)) {
58 58
             $column = ['name' => $column];
59 59
         }
60 60
 
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      */
106 106
     public function addDefaultLabel($array)
107 107
     {
108
-        if (! array_key_exists('label', (array) $array) && array_key_exists('name', (array) $array)) {
108
+        if (!array_key_exists('label', (array) $array) && array_key_exists('name', (array) $array)) {
109 109
             $array = array_merge(['label' => ucfirst($this->makeLabel($array['name']))], $array);
110 110
 
111 111
             return $array;
@@ -139,8 +139,8 @@  discard block
 block discarded – undo
139 139
      */
140 140
     public function remove($entity, $fields)
141 141
     {
142
-        return array_values(array_filter($this->{$entity}, function ($field) use ($fields) {
143
-            return ! in_array($field['name'], (array) $fields);
142
+        return array_values(array_filter($this->{$entity}, function($field) use ($fields) {
143
+            return !in_array($field['name'], (array) $fields);
144 144
         }));
145 145
     }
146 146
 
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
     {
192 192
         $columns = $this->getColumns();
193 193
 
194
-        return collect($columns)->pluck('entity')->reject(function ($value, $key) {
194
+        return collect($columns)->pluck('entity')->reject(function($value, $key) {
195 195
             return $value == null;
196 196
         })->toArray();
197 197
     }
Please login to merge, or discard this patch.
src/CrudServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      */
64 64
     public function register()
65 65
     {
66
-        $this->app->bind('CRUD', function ($app) {
66
+        $this->app->bind('CRUD', function($app) {
67 67
             return new CRUD($app);
68 68
         });
69 69
 
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
         $loader->alias('Image', \Intervention\Image\Facades\Image::class);
82 82
 
83 83
         // map the elfinder prefix
84
-        if (! \Config::get('elfinder.route.prefix')) {
84
+        if (!\Config::get('elfinder.route.prefix')) {
85 85
             \Config::set('elfinder.route.prefix', \Config::get('backpack.base.route_prefix').'/elfinder');
86 86
         }
87 87
     }
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.
src/ModelTraits/SpatieTranslatable/HasTranslations.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public function getAttributeValue($key)
26 26
     {
27
-        if (! $this->isTranslatableAttribute($key)) {
27
+        if (!$this->isTranslatableAttribute($key)) {
28 28
             return parent::getAttributeValue($key);
29 29
         }
30 30
 
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      */
73 73
     public function update(array $attributes = [], array $options = [])
74 74
     {
75
-        if (! $this->exists) {
75
+        if (!$this->exists) {
76 76
             return false;
77 77
         }
78 78
 
Please login to merge, or discard this patch.
src/PanelTraits/Read.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     public function hasUploadFields($form, $id = false)
92 92
     {
93 93
         $fields = $this->getFields($form, $id);
94
-        $upload_fields = array_where($fields, function ($value, $key) {
94
+        $upload_fields = array_where($fields, function($value, $key) {
95 95
             return isset($value['upload']) && $value['upload'] == true;
96 96
         });
97 97
 
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
      */
190 190
     public function getCellView($column, $entry)
191 191
     {
192
-        if (! isset($column['type'])) {
192
+        if (!isset($column['type'])) {
193 193
             return \View::make('crud::columns.text')->with('crud', $this)->with('column', $column)->with('entry', $entry)->render();
194 194
         } else {
195 195
             if (view()->exists('vendor.backpack.crud.columns.'.$column['type'])) {
Please login to merge, or discard this patch.