We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -78,7 +78,7 @@ |
||
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | // Display general error in case it failed |
| 81 | - if (! $this->isInstalled()) { |
|
| 81 | + if (!$this->isInstalled()) { |
|
| 82 | 82 | $this->errorProgressBlock(); |
| 83 | 83 | $this->note('For further information please check the log file.'); |
| 84 | 84 | $this->note('You can also follow the manual installation process documented in https://backpackforlaravel.com/addons/'); |
@@ -78,7 +78,7 @@ |
||
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | // Display general error in case it failed |
| 81 | - if (! $this->isInstalled()) { |
|
| 81 | + if (!$this->isInstalled()) { |
|
| 82 | 82 | $this->errorProgressBlock(); |
| 83 | 83 | $this->note('For further information please check the log file.'); |
| 84 | 84 | $this->note('You can also follow the manual installation process documented in https://backpackforlaravel.com/products/editable-columns'); |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | if (self::isSqlConnection()) { |
| 32 | 32 | $platform = $connection->getDoctrineSchemaManager()->getDatabasePlatform(); |
| 33 | 33 | foreach ($types as $type_key => $type_value) { |
| 34 | - if (! $platform->hasDoctrineTypeMappingFor($type_key)) { |
|
| 34 | + if (!$platform->hasDoctrineTypeMappingFor($type_key)) { |
|
| 35 | 35 | $platform->registerDoctrineTypeMapping($type_key, $type_value); |
| 36 | 36 | } |
| 37 | 37 | } |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | */ |
| 62 | 62 | public function getColumnType($columnName) |
| 63 | 63 | { |
| 64 | - if (! self::isSqlConnection()) { |
|
| 64 | + if (!self::isSqlConnection()) { |
|
| 65 | 65 | return 'text'; |
| 66 | 66 | } |
| 67 | 67 | |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | */ |
| 77 | 77 | public static function isColumnNullable($columnName) |
| 78 | 78 | { |
| 79 | - if (! self::isSqlConnection()) { |
|
| 79 | + if (!self::isSqlConnection()) { |
|
| 80 | 80 | return true; |
| 81 | 81 | } |
| 82 | 82 | |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | */ |
| 92 | 92 | public static function dbColumnHasDefault($columnName) |
| 93 | 93 | { |
| 94 | - if (! self::isSqlConnection()) { |
|
| 94 | + if (!self::isSqlConnection()) { |
|
| 95 | 95 | return false; |
| 96 | 96 | } |
| 97 | 97 | |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | */ |
| 107 | 107 | public static function getDbColumnDefault($columnName) |
| 108 | 108 | { |
| 109 | - if (! self::isSqlConnection()) { |
|
| 109 | + if (!self::isSqlConnection()) { |
|
| 110 | 110 | return false; |
| 111 | 111 | } |
| 112 | 112 | |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | { |
| 81 | 81 | $originalModelValue = $this->getOriginal()[$attribute_name] ?? []; |
| 82 | 82 | |
| 83 | - if (! is_array($originalModelValue)) { |
|
| 83 | + if (!is_array($originalModelValue)) { |
|
| 84 | 84 | $attribute_value = json_decode($originalModelValue, true) ?? []; |
| 85 | 85 | } else { |
| 86 | 86 | $attribute_value = $originalModelValue; |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | if ($files_to_clear) { |
| 94 | 94 | foreach ($files_to_clear as $key => $filename) { |
| 95 | 95 | \Storage::disk($disk)->delete($filename); |
| 96 | - $attribute_value = Arr::where($attribute_value, function ($value, $key) use ($filename) { |
|
| 96 | + $attribute_value = Arr::where($attribute_value, function($value, $key) use ($filename) { |
|
| 97 | 97 | return $value != $filename; |
| 98 | 98 | }); |
| 99 | 99 | } |
@@ -75,7 +75,7 @@ |
||
| 75 | 75 | */ |
| 76 | 76 | public function key(string $key) |
| 77 | 77 | { |
| 78 | - if (! isset($this->attributes['name'])) { |
|
| 78 | + if (!isset($this->attributes['name'])) { |
|
| 79 | 79 | abort(500, 'Column name must be defined before changing the key.'); |
| 80 | 80 | } |
| 81 | 81 | |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | // - a single dimensional array: [1,2,3] |
| 112 | 112 | // - an array of arrays: [[1][2][3]] |
| 113 | 113 | // if is as single dimensional array we can only attach. |
| 114 | - if ($relationValues === null || ! is_multidimensional_array($relationValues)) { |
|
| 114 | + if ($relationValues === null || !is_multidimensional_array($relationValues)) { |
|
| 115 | 115 | $this->attachManyRelation($item, $relation, $relationDetails, $relationValues); |
| 116 | 116 | } else { |
| 117 | 117 | $this->createManyEntries($item, $relation, $relationMethod, $relationDetails); |
@@ -275,7 +275,7 @@ discard block |
||
| 275 | 275 | |
| 276 | 276 | // if column is not nullable in database, and there is no column default (null), |
| 277 | 277 | // we will delete the entry from the database, otherwise it will throw and ugly DB error. |
| 278 | - if (! $relationColumnIsNullable && $dbColumnDefault === null) { |
|
| 278 | + if (!$relationColumnIsNullable && $dbColumnDefault === null) { |
|
| 279 | 279 | return $removedEntries->lazy()->each->delete(); |
| 280 | 280 | } |
| 281 | 281 | |
@@ -320,7 +320,7 @@ discard block |
||
| 320 | 320 | } |
| 321 | 321 | |
| 322 | 322 | // use the collection of sent ids to match against database ids, delete the ones not found in the submitted ids. |
| 323 | - if (! empty($relatedItemsSent)) { |
|
| 323 | + if (!empty($relatedItemsSent)) { |
|
| 324 | 324 | // we perform the cleanup of removed database items |
| 325 | 325 | $entry->{$relationMethod}()->whereNotIn($relatedModelLocalKey, $relatedItemsSent)->lazy()->each->delete(); |
| 326 | 326 | } |
@@ -299,7 +299,7 @@ discard block |
||
| 299 | 299 | } |
| 300 | 300 | // otherwise, loop through all the possible view namespaces |
| 301 | 301 | // until you find a view that exists |
| 302 | - $paths = array_map(function ($item) use ($viewPath) { |
|
| 302 | + $paths = array_map(function($item) use ($viewPath) { |
|
| 303 | 303 | return $item.'.'.$viewPath; |
| 304 | 304 | }, ViewNamespaces::getFor('fields')); |
| 305 | 305 | |
@@ -310,7 +310,7 @@ discard block |
||
| 310 | 310 | } |
| 311 | 311 | |
| 312 | 312 | // if no view exists, in any of the directories above... no bueno |
| 313 | - if (! backpack_pro()) { |
|
| 313 | + if (!backpack_pro()) { |
|
| 314 | 314 | throw new BackpackProRequiredException('Cannot find the field view: '.$viewPath.'. Please check for typos.'.(backpack_pro() ? '' : ' If you are trying to use a PRO field, please first purchase and install the backpack/pro addon from backpackforlaravel.com'), 1); |
| 315 | 315 | } |
| 316 | 316 | abort(500, "Cannot find '{$viewPath}' field view in any of the regular locations."); |
@@ -14,8 +14,8 @@ discard block |
||
| 14 | 14 | { |
| 15 | 15 | $this->getDbColumnTypes(); |
| 16 | 16 | |
| 17 | - array_map(function ($field) use ($setFields, $setColumns) { |
|
| 18 | - if ($setFields && ! isset($this->getCleanStateFields()[$field])) { |
|
| 17 | + array_map(function($field) use ($setFields, $setColumns) { |
|
| 18 | + if ($setFields && !isset($this->getCleanStateFields()[$field])) { |
|
| 19 | 19 | $this->addField([ |
| 20 | 20 | 'name' => $field, |
| 21 | 21 | 'label' => $this->makeLabel($field), |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | ]); |
| 29 | 29 | } |
| 30 | 30 | |
| 31 | - if ($setColumns && ! in_array($field, $this->model->getHidden()) && ! isset($this->columns()[$field])) { |
|
| 31 | + if ($setColumns && !in_array($field, $this->model->getHidden()) && !isset($this->columns()[$field])) { |
|
| 32 | 32 | $this->addColumn([ |
| 33 | 33 | 'name' => $field, |
| 34 | 34 | 'label' => $this->makeLabel($field), |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | { |
| 51 | 51 | $dbColumnTypes = []; |
| 52 | 52 | |
| 53 | - if (! $this->driverIsSql()) { |
|
| 53 | + if (!$this->driverIsSql()) { |
|
| 54 | 54 | return $dbColumnTypes; |
| 55 | 55 | } |
| 56 | 56 | |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | |
| 116 | 116 | $dbColumnTypes = $this->getDbColumnTypes(); |
| 117 | 117 | |
| 118 | - if (! isset($dbColumnTypes[$fieldName])) { |
|
| 118 | + if (!isset($dbColumnTypes[$fieldName])) { |
|
| 119 | 119 | return 'text'; |
| 120 | 120 | } |
| 121 | 121 | |
@@ -212,12 +212,12 @@ discard block |
||
| 212 | 212 | { |
| 213 | 213 | $fillable = $this->model->getFillable(); |
| 214 | 214 | |
| 215 | - if (! $this->driverIsSql()) { |
|
| 215 | + if (!$this->driverIsSql()) { |
|
| 216 | 216 | $columns = $fillable; |
| 217 | 217 | } else { |
| 218 | 218 | // Automatically-set columns should be both in the database, and in the $fillable variable on the Eloquent Model |
| 219 | 219 | $columns = $this->model::getDbTableSchema()->getColumnsNames(); |
| 220 | - if (! empty($fillable)) { |
|
| 220 | + if (!empty($fillable)) { |
|
| 221 | 221 | $columns = array_intersect($columns, $fillable); |
| 222 | 222 | } |
| 223 | 223 | } |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | { |
| 67 | 67 | if (isset($field['relation_type']) && $field['relation_type'] === 'MorphTo') { |
| 68 | 68 | [$morphTypeFieldName, $morphIdFieldName] = $this->getMorphToFieldNames($field['name']); |
| 69 | - if (! $this->hasFieldWhere('name', $morphTypeFieldName) || ! $this->hasFieldWhere('name', $morphIdFieldName)) { |
|
| 69 | + if (!$this->hasFieldWhere('name', $morphTypeFieldName) || !$this->hasFieldWhere('name', $morphIdFieldName)) { |
|
| 70 | 70 | // create the morph fields in the crud panel |
| 71 | 71 | $field = $this->createMorphToRelationFields($field, $morphTypeFieldName, $morphIdFieldName); |
| 72 | 72 | foreach ($field['morphOptions'] ?? [] as $morphOption) { |
@@ -97,8 +97,8 @@ discard block |
||
| 97 | 97 | [$morphTypeFieldName, $morphIdFieldName] = $this->getMorphToFieldNames($fieldName); |
| 98 | 98 | |
| 99 | 99 | // check if the morph field where we are about to add the options have the proper fields setup |
| 100 | - if (! in_array($morphTypeFieldName, array_column($morphField['subfields'], 'name')) || |
|
| 101 | - ! in_array($morphIdFieldName, array_column($morphField['subfields'], 'name'))) { |
|
| 100 | + if (!in_array($morphTypeFieldName, array_column($morphField['subfields'], 'name')) || |
|
| 101 | + !in_array($morphIdFieldName, array_column($morphField['subfields'], 'name'))) { |
|
| 102 | 102 | throw new \Exception('Trying to add morphOptions to a non morph field. Check if field and relation name matches.'); |
| 103 | 103 | } |
| 104 | 104 | // split the subfields into morphable_type and morphable_id fields. |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | } else { |
| 154 | 154 | // in case it's not a model and is a string representing the model in the morphMap |
| 155 | 155 | // check if that string exists in the morphMap, otherwise abort. |
| 156 | - if (! array_key_exists($key, $morphMap)) { |
|
| 156 | + if (!array_key_exists($key, $morphMap)) { |
|
| 157 | 157 | throw new \Exception('Unknown morph type «'.$key.'», that name was not found in the morphMap.'); |
| 158 | 158 | } |
| 159 | 159 | // check if the key already exists |