We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -16,7 +16,7 @@ |
||
16 | 16 | $this->crud->hasAccessOrFail('reorder'); |
17 | 17 | $this->crud->setOperation('reorder'); |
18 | 18 | |
19 | - if (! $this->crud->isReorderEnabled()) { |
|
19 | + if (!$this->crud->isReorderEnabled()) { |
|
20 | 20 | abort(403, 'Reorder is disabled.'); |
21 | 21 | } |
22 | 22 |
@@ -46,7 +46,7 @@ |
||
46 | 46 | $this->crud->setOperation('revisions'); |
47 | 47 | |
48 | 48 | $revisionId = \Request::input('revision_id', false); |
49 | - if (! $revisionId) { |
|
49 | + if (!$revisionId) { |
|
50 | 50 | abort(500, 'Can\'t restore revision without revision_id'); |
51 | 51 | } else { |
52 | 52 | $this->crud->restoreRevision($id, $revisionId); // do the update |
@@ -5,7 +5,7 @@ |
||
5 | 5 | |
6 | 6 | <span> |
7 | 7 | <?php |
8 | - $suffix = isset($column['suffix'])?$column['suffix']:'items'; |
|
8 | + $suffix = isset($column['suffix']) ? $column['suffix'] : 'items'; |
|
9 | 9 | |
10 | 10 | // the value should be an array wether or not attribute casting is used |
11 | 11 | if (!is_array($array)) { |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (! function_exists('square_brackets_to_dots')) { |
|
3 | +if (!function_exists('square_brackets_to_dots')) { |
|
4 | 4 | /** |
5 | 5 | * Turns a string from bracket-type array to dot-notation array. |
6 | 6 | * Ex: array[0][property] turns into array.0.property. |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | } |
18 | 18 | } |
19 | 19 | |
20 | -if (! function_exists('is_countable')) { |
|
20 | +if (!function_exists('is_countable')) { |
|
21 | 21 | /** |
22 | 22 | * We need this because is_countable was only introduced in PHP 7.3, |
23 | 23 | * and in PHP 7.2 you should check if count() argument is really countable. |
@@ -5,24 +5,24 @@ |
||
5 | 5 | |
6 | 6 | <span> |
7 | 7 | <?php |
8 | - if ($values !== null) { |
|
9 | - if (is_array($values)) { |
|
10 | - $array_of_values = []; |
|
8 | + if ($values !== null) { |
|
9 | + if (is_array($values)) { |
|
10 | + $array_of_values = []; |
|
11 | 11 | |
12 | - foreach ($values as $key => $value) { |
|
13 | - $array_of_values[] = $column['options'][$value]; |
|
14 | - } |
|
12 | + foreach ($values as $key => $value) { |
|
13 | + $array_of_values[] = $column['options'][$value]; |
|
14 | + } |
|
15 | 15 | |
16 | - if (count($array_of_values) > 1) { |
|
17 | - echo implode(', ', $array_of_values); |
|
18 | - } else { |
|
19 | - echo $array_of_values; |
|
20 | - } |
|
21 | - } else { |
|
22 | - echo $column['options'][$values]; |
|
23 | - } |
|
24 | - } else { |
|
25 | - echo "-"; |
|
26 | - } |
|
27 | - ?> |
|
16 | + if (count($array_of_values) > 1) { |
|
17 | + echo implode(', ', $array_of_values); |
|
18 | + } else { |
|
19 | + echo $array_of_values; |
|
20 | + } |
|
21 | + } else { |
|
22 | + echo $column['options'][$values]; |
|
23 | + } |
|
24 | + } else { |
|
25 | + echo "-"; |
|
26 | + } |
|
27 | + ?> |
|
28 | 28 | </span> |
29 | 29 | \ No newline at end of file |
@@ -17,12 +17,12 @@ discard block |
||
17 | 17 | */ |
18 | 18 | public function setFromDb() |
19 | 19 | { |
20 | - if (! $this->driverIsMongoDb()) { |
|
20 | + if (!$this->driverIsMongoDb()) { |
|
21 | 21 | $this->setDoctrineTypesMapping(); |
22 | 22 | $this->getDbColumnTypes(); |
23 | 23 | } |
24 | 24 | |
25 | - array_map(function ($field) { |
|
25 | + array_map(function($field) { |
|
26 | 26 | $new_field = [ |
27 | 27 | 'name' => $field, |
28 | 28 | 'label' => $this->makeLabel($field), |
@@ -33,14 +33,14 @@ discard block |
||
33 | 33 | 'attributes' => [], |
34 | 34 | 'autoset' => true, |
35 | 35 | ]; |
36 | - if (! isset($this->create_fields[$field])) { |
|
36 | + if (!isset($this->create_fields[$field])) { |
|
37 | 37 | $this->create_fields[$field] = $new_field; |
38 | 38 | } |
39 | - if (! isset($this->update_fields[$field])) { |
|
39 | + if (!isset($this->update_fields[$field])) { |
|
40 | 40 | $this->update_fields[$field] = $new_field; |
41 | 41 | } |
42 | 42 | |
43 | - if (! in_array($field, $this->model->getHidden()) && ! isset($this->columns[$field])) { |
|
43 | + if (!in_array($field, $this->model->getHidden()) && !isset($this->columns[$field])) { |
|
44 | 44 | $this->addColumn([ |
45 | 45 | 'name' => $field, |
46 | 46 | 'label' => $this->makeLabel($field), |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | */ |
97 | 97 | public function getFieldTypeFromDbColumnType($field) |
98 | 98 | { |
99 | - if (! array_key_exists($field, $this->db_column_types)) { |
|
99 | + if (!array_key_exists($field, $this->db_column_types)) { |
|
100 | 100 | return 'text'; |
101 | 101 | } |
102 | 102 | |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | $types = ['enum' => 'string']; |
163 | 163 | $platform = \DB::getDoctrineConnection()->getDatabasePlatform(); |
164 | 164 | foreach ($types as $type_key => $type_value) { |
165 | - if (! $platform->hasDoctrineTypeMappingFor($type_key)) { |
|
165 | + if (!$platform->hasDoctrineTypeMappingFor($type_key)) { |
|
166 | 166 | $platform->registerDoctrineTypeMapping($type_key, $type_value); |
167 | 167 | } |
168 | 168 | } |
@@ -221,7 +221,7 @@ discard block |
||
221 | 221 | // Automatically-set columns should be both in the database, and in the $fillable variable on the Eloquent Model |
222 | 222 | $columns = $this->model->getConnection()->getSchemaBuilder()->getColumnListing($this->model->getTable()); |
223 | 223 | |
224 | - if (! empty($fillable)) { |
|
224 | + if (!empty($fillable)) { |
|
225 | 225 | $columns = array_intersect($columns, $fillable); |
226 | 226 | } |
227 | 227 | } |
@@ -3,7 +3,7 @@ |
||
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\CarbonInterface )) { |
|
6 | +if (isset($field['value']) && ($field['value'] instanceof \Carbon\CarbonInterface)) { |
|
7 | 7 | $field['value'] = $field['value']->toDateTimeString(); |
8 | 8 | } |
9 | 9 | ?> |
@@ -3,11 +3,11 @@ |
||
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\CarbonInterface )) { |
|
6 | + if (isset($field['value']) && ($field['value'] instanceof \Carbon\CarbonInterface)) { |
|
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 | if (!isset($field['attributes']['style'])) { |
13 | 13 | $field['attributes']['style'] = 'background-color: white!important;'; |
@@ -3,7 +3,7 @@ |
||
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\CarbonInterface )) { |
|
6 | +if (isset($field['value']) && ($field['value'] instanceof \Carbon\CarbonInterface)) { |
|
7 | 7 | $field['value'] = $field['value']->toDateString(); |
8 | 8 | } |
9 | 9 | ?> |