We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -26,28 +26,28 @@ discard block |
||
26 | 26 | |
27 | 27 | // if this is a relation type field and no corresponding model was specified, get it from the relation method |
28 | 28 | // defined in the main model |
29 | - if (isset($completeFieldsArray['entity']) && ! isset($completeFieldsArray['model'])) { |
|
29 | + if (isset($completeFieldsArray['entity']) && !isset($completeFieldsArray['model'])) { |
|
30 | 30 | $completeFieldsArray['model'] = $this->getRelationModel($completeFieldsArray['entity']); |
31 | 31 | } |
32 | 32 | |
33 | 33 | // if the label is missing, we should set it |
34 | - if (! isset($completeFieldsArray['label'])) { |
|
34 | + if (!isset($completeFieldsArray['label'])) { |
|
35 | 35 | $completeFieldsArray['label'] = ucfirst($completeFieldsArray['name']); |
36 | 36 | } |
37 | 37 | |
38 | 38 | // if the field type is missing, we should set it |
39 | - if (! isset($completeFieldsArray['type'])) { |
|
39 | + if (!isset($completeFieldsArray['type'])) { |
|
40 | 40 | $completeFieldsArray['type'] = $this->getFieldTypeFromDbColumnType($completeFieldsArray['name']); |
41 | 41 | } |
42 | 42 | |
43 | 43 | // if a tab was mentioned, we should enable it |
44 | 44 | if (isset($completeFieldsArray['tab'])) { |
45 | - if (! $this->tabsEnabled()) { |
|
45 | + if (!$this->tabsEnabled()) { |
|
46 | 46 | $this->enableTabs(); |
47 | 47 | } |
48 | 48 | } |
49 | 49 | |
50 | - $this->transformFields($form, function ($fields) use ($completeFieldsArray) { |
|
50 | + $this->transformFields($form, function($fields) use ($completeFieldsArray) { |
|
51 | 51 | $fields[$completeFieldsArray['name']] = $completeFieldsArray; |
52 | 52 | |
53 | 53 | return $fields; |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | */ |
80 | 80 | public function afterField($targetFieldName, $form = 'both') |
81 | 81 | { |
82 | - $this->transformFields($form, function ($fields) use ($targetFieldName) { |
|
82 | + $this->transformFields($form, function($fields) use ($targetFieldName) { |
|
83 | 83 | return $this->moveField($fields, $targetFieldName, false); |
84 | 84 | }); |
85 | 85 | } |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | */ |
93 | 93 | public function beforeField($targetFieldName, $form = 'both') |
94 | 94 | { |
95 | - $this->transformFields($form, function ($fields) use ($targetFieldName) { |
|
95 | + $this->transformFields($form, function($fields) use ($targetFieldName) { |
|
96 | 96 | return $this->moveField($fields, $targetFieldName, true); |
97 | 97 | }); |
98 | 98 | } |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | */ |
135 | 135 | public function removeField($name, $form = 'both') |
136 | 136 | { |
137 | - $this->transformFields($form, function ($fields) use ($name) { |
|
137 | + $this->transformFields($form, function($fields) use ($name) { |
|
138 | 138 | array_forget($fields, $name); |
139 | 139 | |
140 | 140 | return $fields; |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | */ |
150 | 150 | public function removeFields($array_of_names, $form = 'both') |
151 | 151 | { |
152 | - if (! empty($array_of_names)) { |
|
152 | + if (!empty($array_of_names)) { |
|
153 | 153 | foreach ($array_of_names as $name) { |
154 | 154 | $this->removeField($name, $form); |
155 | 155 | } |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | public function removeAllFields($form = 'both') |
165 | 165 | { |
166 | 166 | $current_fields = $this->getCurrentFields(); |
167 | - if (! empty($current_fields)) { |
|
167 | + if (!empty($current_fields)) { |
|
168 | 168 | foreach ($current_fields as $field) { |
169 | 169 | $this->removeField($field['name'], $form); |
170 | 170 | } |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | $jsonCastables = ['array', 'object', 'json']; |
228 | 228 | $fieldCasting = $casted_attributes[$field['name']]; |
229 | 229 | |
230 | - if (in_array($fieldCasting, $jsonCastables) && isset($data[$field['name']]) && ! empty($data[$field['name']]) && ! is_array($data[$field['name']])) { |
|
230 | + if (in_array($fieldCasting, $jsonCastables) && isset($data[$field['name']]) && !empty($data[$field['name']]) && !is_array($data[$field['name']])) { |
|
231 | 231 | try { |
232 | 232 | $data[$field['name']] = json_decode($data[$field['name']]); |
233 | 233 | } catch (\Exception $e) { |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | */ |
259 | 259 | public function orderFields($order, $form = 'both') |
260 | 260 | { |
261 | - $this->transformFields($form, function ($fields) use ($order) { |
|
261 | + $this->transformFields($form, function($fields) use ($order) { |
|
262 | 262 | return $this->applyOrderToFields($fields, $order); |
263 | 263 | }); |
264 | 264 | } |