We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -54,7 +54,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -24,12 +24,12 @@ discard block |
||
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | // if the label is missing, we should set it |
| 27 | - if (! isset($complete_field_array['label'])) { |
|
| 27 | + if (!isset($complete_field_array['label'])) { |
|
| 28 | 28 | $complete_field_array['label'] = ucfirst($complete_field_array['name']); |
| 29 | 29 | } |
| 30 | 30 | |
| 31 | 31 | // if the field type is missing, we should set it |
| 32 | - if (! isset($complete_field_array['type'])) { |
|
| 32 | + if (!isset($complete_field_array['type'])) { |
|
| 33 | 33 | $complete_field_array['type'] = $this->getFieldTypeFromDbColumnType($complete_field_array['name']); |
| 34 | 34 | } |
| 35 | 35 | |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | */ |
| 140 | 140 | public function removeFields($array_of_names, $form = 'both') |
| 141 | 141 | { |
| 142 | - if (! empty($array_of_names)) { |
|
| 142 | + if (!empty($array_of_names)) { |
|
| 143 | 143 | foreach ($array_of_names as $name) { |
| 144 | 144 | $this->removeField($name, $form); |
| 145 | 145 | } |
@@ -200,7 +200,7 @@ discard block |
||
| 200 | 200 | $jsonCastables = ['array', 'object', 'json']; |
| 201 | 201 | $fieldCasting = $this->model->getCasts()[$field['name']]; |
| 202 | 202 | |
| 203 | - if (in_array($fieldCasting, $jsonCastables) && isset($data[$field['name']]) && ! empty($data[$field['name']]) && ! is_array($data[$field['name']])) { |
|
| 203 | + if (in_array($fieldCasting, $jsonCastables) && isset($data[$field['name']]) && !empty($data[$field['name']]) && !is_array($data[$field['name']])) { |
|
| 204 | 204 | try { |
| 205 | 205 | $data[$field['name']] = json_decode($data[$field['name']]); |
| 206 | 206 | } catch (Exception $e) { |
@@ -46,7 +46,7 @@ discard block |
||
| 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 |
||
| 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(), |
@@ -14,6 +14,7 @@ |
||
| 14 | 14 | * Find and retrieve an entry in the database or fail. |
| 15 | 15 | * |
| 16 | 16 | * @param [int] The id of the row in the db to fetch. |
| 17 | + * @param integer $id |
|
| 17 | 18 | * |
| 18 | 19 | * @return [Eloquent Collection] The row in the db. |
| 19 | 20 | */ |
@@ -91,7 +91,7 @@ discard block |
||
| 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 |
||
| 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'])) { |
@@ -41,7 +41,7 @@ |
||
| 41 | 41 | $this->crud->hasAccessOrFail('revisions'); |
| 42 | 42 | |
| 43 | 43 | $revisionId = \Request::input('revision_id', false); |
| 44 | - if (! $revisionId) { |
|
| 44 | + if (!$revisionId) { |
|
| 45 | 45 | abort(500, 'Can\'t restore revision without revision_id'); |
| 46 | 46 | } else { |
| 47 | 47 | $this->crud->restoreRevision($id, $revisionId); // do the update |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | { |
| 17 | 17 | $this->getDbColumnTypes(); |
| 18 | 18 | |
| 19 | - array_map(function ($field) { |
|
| 19 | + array_map(function($field) { |
|
| 20 | 20 | // $this->labels[$field] = $this->makeLabel($field); |
| 21 | 21 | |
| 22 | 22 | $new_field = [ |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | $this->create_fields[$field] = $new_field; |
| 31 | 31 | $this->update_fields[$field] = $new_field; |
| 32 | 32 | |
| 33 | - if (! in_array($field, $this->model->getHidden())) { |
|
| 33 | + if (!in_array($field, $this->model->getHidden())) { |
|
| 34 | 34 | $this->columns[$field] = [ |
| 35 | 35 | 'name' => $field, |
| 36 | 36 | 'label' => ucfirst($field), |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | */ |
| 68 | 68 | public function getFieldTypeFromDbColumnType($field) |
| 69 | 69 | { |
| 70 | - if (! array_key_exists($field, $this->db_column_types)) { |
|
| 70 | + if (!array_key_exists($field, $this->db_column_types)) { |
|
| 71 | 71 | return 'text'; |
| 72 | 72 | } |
| 73 | 73 | |
@@ -148,7 +148,7 @@ discard block |
||
| 148 | 148 | $columns = $this->model->getConnection()->getSchemaBuilder()->getColumnListing($this->model->getTable()); |
| 149 | 149 | $fillable = $this->model->getFillable(); |
| 150 | 150 | |
| 151 | - if (! empty($fillable)) { |
|
| 151 | + if (!empty($fillable)) { |
|
| 152 | 152 | $columns = array_intersect($columns, $fillable); |
| 153 | 153 | } |
| 154 | 154 | |