We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | public function addColumn($column) |
64 | 64 | { |
65 | 65 | // if a string was passed, not an array, change it to an array |
66 | - if (! is_array($column)) { |
|
66 | + if (!is_array($column)) { |
|
67 | 67 | $column = ['name' => $column]; |
68 | 68 | } |
69 | 69 | |
@@ -71,17 +71,17 @@ discard block |
||
71 | 71 | $column_with_details = $this->addDefaultLabel($column); |
72 | 72 | |
73 | 73 | // make sure the column has a name |
74 | - if (! array_key_exists('name', $column_with_details)) { |
|
74 | + if (!array_key_exists('name', $column_with_details)) { |
|
75 | 75 | $column_with_details['name'] = 'anonymous_column_'.str_random(5); |
76 | 76 | } |
77 | 77 | |
78 | 78 | // make sure the column has a type |
79 | - if (! array_key_exists('type', $column_with_details)) { |
|
79 | + if (!array_key_exists('type', $column_with_details)) { |
|
80 | 80 | $column_with_details['type'] = 'text'; |
81 | 81 | } |
82 | 82 | |
83 | 83 | // make sure the column has a key |
84 | - if (! array_key_exists('key', $column_with_details)) { |
|
84 | + if (!array_key_exists('key', $column_with_details)) { |
|
85 | 85 | $column_with_details['key'] = str_replace(".", "__", $column_with_details['name']); |
86 | 86 | } |
87 | 87 | |
@@ -89,17 +89,17 @@ discard block |
||
89 | 89 | $columnExistsInDb = $this->hasColumn($this->model->getTable(), $column_with_details['name']); |
90 | 90 | |
91 | 91 | // make sure the column has a tableColumn boolean |
92 | - if (! array_key_exists('tableColumn', $column_with_details)) { |
|
92 | + if (!array_key_exists('tableColumn', $column_with_details)) { |
|
93 | 93 | $column_with_details['tableColumn'] = $columnExistsInDb ? true : false; |
94 | 94 | } |
95 | 95 | |
96 | 96 | // make sure the column has a orderable boolean |
97 | - if (! array_key_exists('orderable', $column_with_details)) { |
|
97 | + if (!array_key_exists('orderable', $column_with_details)) { |
|
98 | 98 | $column_with_details['orderable'] = $columnExistsInDb ? true : false; |
99 | 99 | } |
100 | 100 | |
101 | 101 | // make sure the column has a searchLogic |
102 | - if (! array_key_exists('searchLogic', $column_with_details)) { |
|
102 | + if (!array_key_exists('searchLogic', $column_with_details)) { |
|
103 | 103 | $column_with_details['searchLogic'] = $columnExistsInDb ? true : false; |
104 | 104 | } |
105 | 105 | |
@@ -108,14 +108,14 @@ discard block |
||
108 | 108 | |
109 | 109 | // make sure the column has a priority in terms of visibility |
110 | 110 | // if no priority has been defined, use the order in the array plus one |
111 | - if (! array_key_exists('priority', $column_with_details)) { |
|
111 | + if (!array_key_exists('priority', $column_with_details)) { |
|
112 | 112 | $position_in_columns_array = (int) array_search($column_with_details['key'], array_keys($this->columns())); |
113 | 113 | $columnsArray[$column_with_details['key']]['priority'] = $position_in_columns_array + 1; |
114 | 114 | } |
115 | 115 | |
116 | 116 | // if this is a relation type field and no corresponding model was specified, get it from the relation method |
117 | 117 | // defined in the main model |
118 | - if (isset($column_with_details['entity']) && ! isset($column_with_details['model'])) { |
|
118 | + if (isset($column_with_details['entity']) && !isset($column_with_details['model'])) { |
|
119 | 119 | $columnsArray[$column_with_details['key']]['model'] = $this->getRelationModel($column_with_details['entity']); |
120 | 120 | } |
121 | 121 | |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | */ |
166 | 166 | public function makeFirstColumn() |
167 | 167 | { |
168 | - if (! $this->columns()) { |
|
168 | + if (!$this->columns()) { |
|
169 | 169 | return false; |
170 | 170 | } |
171 | 171 | |
@@ -187,8 +187,7 @@ discard block |
||
187 | 187 | $columnsArray = $this->columns(); |
188 | 188 | |
189 | 189 | if (array_key_exists($targetColumnName, $columnsArray)) { |
190 | - $targetColumnPosition = $before ? array_search($targetColumnName, array_keys($columnsArray)) : |
|
191 | - array_search($targetColumnName, array_keys($columnsArray)) + 1; |
|
190 | + $targetColumnPosition = $before ? array_search($targetColumnName, array_keys($columnsArray)) : array_search($targetColumnName, array_keys($columnsArray)) + 1; |
|
192 | 191 | |
193 | 192 | $element = array_pop($columnsArray); |
194 | 193 | $beginningPart = array_slice($columnsArray, 0, $targetColumnPosition, true); |
@@ -227,7 +226,7 @@ discard block |
||
227 | 226 | */ |
228 | 227 | public function addDefaultLabel($array) |
229 | 228 | { |
230 | - if (! array_key_exists('label', (array) $array) && array_key_exists('name', (array) $array)) { |
|
229 | + if (!array_key_exists('label', (array) $array) && array_key_exists('name', (array) $array)) { |
|
231 | 230 | $array = array_merge(['label' => mb_ucfirst($this->makeLabel($array['name']))], $array); |
232 | 231 | |
233 | 232 | return $array; |
@@ -255,7 +254,7 @@ discard block |
||
255 | 254 | */ |
256 | 255 | public function removeColumns($columns) |
257 | 256 | { |
258 | - if (! empty($columns)) { |
|
257 | + if (!empty($columns)) { |
|
259 | 258 | foreach ($columns as $columnKey) { |
260 | 259 | $this->removeColumn($columnKey); |
261 | 260 | } |
@@ -334,7 +333,7 @@ discard block |
||
334 | 333 | { |
335 | 334 | $columns = $this->columns(); |
336 | 335 | |
337 | - return collect($columns)->pluck('entity')->reject(function ($value, $key) { |
|
336 | + return collect($columns)->pluck('entity')->reject(function($value, $key) { |
|
338 | 337 | return $value == null; |
339 | 338 | })->toArray(); |
340 | 339 | } |