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 | */ |
| 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 |
||
| 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 | } |
@@ -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(), |
@@ -52,7 +52,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -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'])) { |
@@ -3,13 +3,13 @@ |
||
| 3 | 3 | <?php |
| 4 | 4 | $max = isset($field['max']) && (int) $field['max'] > 0 ? $field['max'] : -1; |
| 5 | 5 | $min = isset($field['min']) && (int) $field['min'] > 0 ? $field['min'] : -1; |
| 6 | - $item_name = strtolower( isset($field['entity_singular']) && !empty($field['entity_singular']) ? $field['entity_singular'] : $field['label']); |
|
| 6 | + $item_name = strtolower(isset($field['entity_singular']) && !empty($field['entity_singular']) ? $field['entity_singular'] : $field['label']); |
|
| 7 | 7 | |
| 8 | - $items = old($field['name']) ? (old($field['name'])) : (isset($field['value']) ? ($field['value']) : (isset($field['default']) ? ($field['default']) : '' )); |
|
| 8 | + $items = old($field['name']) ? (old($field['name'])) : (isset($field['value']) ? ($field['value']) : (isset($field['default']) ? ($field['default']) : '')); |
|
| 9 | 9 | |
| 10 | 10 | // make sure not matter the attribute casting |
| 11 | 11 | // the $items variable contains a properly defined JSON |
| 12 | - if(is_array($items)) { |
|
| 12 | + if (is_array($items)) { |
|
| 13 | 13 | if (count($items)) { |
| 14 | 14 | $items = json_encode($items); |
| 15 | 15 | } |
@@ -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 |
@@ -27,12 +27,12 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | public function __construct() |
| 29 | 29 | { |
| 30 | - if (! $this->crud) { |
|
| 30 | + if (!$this->crud) { |
|
| 31 | 31 | $this->crud = app()->make(CrudPanel::class); |
| 32 | 32 | |
| 33 | 33 | // call the setup function inside this closure to also have the request there |
| 34 | 34 | // this way, developers can use things stored in session (auth variables, etc) |
| 35 | - $this->middleware(function ($request, $next) { |
|
| 35 | + $this->middleware(function($request, $next) { |
|
| 36 | 36 | $this->request = $request; |
| 37 | 37 | $this->crud->request = $request; |
| 38 | 38 | $this->setup(); |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | $this->data['title'] = ucfirst($this->crud->entity_name_plural); |
| 63 | 63 | |
| 64 | 64 | // get all entries if AJAX is not enabled |
| 65 | - if (! $this->data['crud']->ajaxTable()) { |
|
| 65 | + if (!$this->data['crud']->ajaxTable()) { |
|
| 66 | 66 | $this->data['entries'] = $this->data['crud']->getEntries(); |
| 67 | 67 | } |
| 68 | 68 | |