We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | { |
| 23 | 23 | $connection = DB::connection($this->getConnectionName()); |
| 24 | 24 | |
| 25 | - if (! method_exists($connection, 'getDoctrineSchemaManager')) { |
|
| 25 | + if (!method_exists($connection, 'getDoctrineSchemaManager')) { |
|
| 26 | 26 | return $connection; |
| 27 | 27 | } |
| 28 | 28 | |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | if (self::isSqlConnection()) { |
| 36 | 36 | $platform = $connection->getDoctrineSchemaManager()->getDatabasePlatform(); |
| 37 | 37 | foreach ($types as $type_key => $type_value) { |
| 38 | - if (! $platform->hasDoctrineTypeMappingFor($type_key)) { |
|
| 38 | + if (!$platform->hasDoctrineTypeMappingFor($type_key)) { |
|
| 39 | 39 | $platform->registerDoctrineTypeMapping($type_key, $type_value); |
| 40 | 40 | } |
| 41 | 41 | } |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | */ |
| 66 | 66 | public function getColumnType($columnName) |
| 67 | 67 | { |
| 68 | - if (! self::isSqlConnection()) { |
|
| 68 | + if (!self::isSqlConnection()) { |
|
| 69 | 69 | return 'text'; |
| 70 | 70 | } |
| 71 | 71 | |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | */ |
| 81 | 81 | public static function isColumnNullable($columnName) |
| 82 | 82 | { |
| 83 | - if (! self::isSqlConnection()) { |
|
| 83 | + if (!self::isSqlConnection()) { |
|
| 84 | 84 | return true; |
| 85 | 85 | } |
| 86 | 86 | |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | */ |
| 96 | 96 | public static function dbColumnHasDefault($columnName) |
| 97 | 97 | { |
| 98 | - if (! self::isSqlConnection()) { |
|
| 98 | + if (!self::isSqlConnection()) { |
|
| 99 | 99 | return false; |
| 100 | 100 | } |
| 101 | 101 | |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | */ |
| 111 | 111 | public static function getDbColumnDefault($columnName) |
| 112 | 112 | { |
| 113 | - if (! self::isSqlConnection()) { |
|
| 113 | + if (!self::isSqlConnection()) { |
|
| 114 | 114 | return false; |
| 115 | 115 | } |
| 116 | 116 | |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | // if that widget name already exists in the widgets collection |
| 38 | 38 | // then pick up all widget attributes from that entry |
| 39 | 39 | // and overwrite them with the ones passed in $attributes |
| 40 | - if ($existingItem = self::collection()->filter(function ($item) use ($attributes) { |
|
| 40 | + if ($existingItem = self::collection()->filter(function($item) use ($attributes) { |
|
| 41 | 41 | return $item->attributes['name'] === $attributes['name']; |
| 42 | 42 | })->first()) { |
| 43 | 43 | $attributes = array_merge($existingItem->attributes, $attributes); |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | } |
| 160 | 160 | } |
| 161 | 161 | $type = $this->attributes['type']; |
| 162 | - $paths = array_map(function ($item) use ($type) { |
|
| 162 | + $paths = array_map(function($item) use ($type) { |
|
| 163 | 163 | return $item.'.'.$type; |
| 164 | 164 | }, ViewNamespaces::getWithFallbackFor('widgets', 'backpack.ui.component_view_namespaces.widgets')); |
| 165 | 165 | |
@@ -169,7 +169,7 @@ discard block |
||
| 169 | 169 | } |
| 170 | 170 | } |
| 171 | 171 | // if no view exists, in any of the directories above... no bueno |
| 172 | - if (! backpack_pro()) { |
|
| 172 | + if (!backpack_pro()) { |
|
| 173 | 173 | throw new BackpackProRequiredException('Cannot find the widget view: '.$this->attributes['type'].'. Please check for typos.'.(backpack_pro() ? '' : ' If you are trying to use a PRO widget, please first purchase and install the backpack/pro addon from backpackforlaravel.com'), 1); |
| 174 | 174 | } |
| 175 | 175 | abort(500, 'Cannot find the view for «'.$this->attributes['type'].'» widget type. Please check for typos.'); |
@@ -253,10 +253,10 @@ discard block |
||
| 253 | 253 | */ |
| 254 | 254 | private function save() |
| 255 | 255 | { |
| 256 | - $itemExists = $this->collection()->filter(function ($item) { |
|
| 256 | + $itemExists = $this->collection()->filter(function($item) { |
|
| 257 | 257 | return $item->attributes['name'] === $this->attributes['name']; |
| 258 | 258 | })->isNotEmpty(); |
| 259 | - if (! $itemExists) { |
|
| 259 | + if (!$itemExists) { |
|
| 260 | 260 | $this->collection()->put($this->attributes['name'], $this); |
| 261 | 261 | } else { |
| 262 | 262 | $this->collection()[$this->attributes['name']] = $this; |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | |
| 26 | 26 | private bool $deleteWhenEntryIsDeleted = true; |
| 27 | 27 | |
| 28 | - private bool|string $attachedToFakeField = false; |
|
| 28 | + private bool | string $attachedToFakeField = false; |
|
| 29 | 29 | |
| 30 | 30 | /** |
| 31 | 31 | * Cloud disks have the ability to generate temporary URLs to files, should we do it? |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | /******************************* |
| 63 | 63 | * Static methods |
| 64 | 64 | *******************************/ |
| 65 | - public static function for(array $crudObject, array $definition): UploaderInterface |
|
| 65 | + public static function for (array $crudObject, array $definition): UploaderInterface |
|
| 66 | 66 | { |
| 67 | 67 | return new static($crudObject, $definition); |
| 68 | 68 | } |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | public function deleteUploadedFiles(Model $entry): void |
| 104 | 104 | { |
| 105 | 105 | if ($this->deleteWhenEntryIsDeleted) { |
| 106 | - if (! in_array(SoftDeletes::class, class_uses_recursive($entry), true)) { |
|
| 106 | + if (!in_array(SoftDeletes::class, class_uses_recursive($entry), true)) { |
|
| 107 | 107 | $this->performFileDeletion($entry); |
| 108 | 108 | |
| 109 | 109 | return; |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | |
| 180 | 180 | public function getPreviousFiles(Model $entry): mixed |
| 181 | 181 | { |
| 182 | - if (! $this->attachedToFakeField) { |
|
| 182 | + if (!$this->attachedToFakeField) { |
|
| 183 | 183 | return $this->getOriginalValue($entry); |
| 184 | 184 | } |
| 185 | 185 | |
@@ -218,7 +218,7 @@ discard block |
||
| 218 | 218 | $value = $entry->{$this->getAttributeName()}; |
| 219 | 219 | |
| 220 | 220 | if ($this->handleMultipleFiles) { |
| 221 | - if (! isset($entry->getCasts()[$this->getName()]) && is_string($value)) { |
|
| 221 | + if (!isset($entry->getCasts()[$this->getName()]) && is_string($value)) { |
|
| 222 | 222 | $entry->{$this->getAttributeName()} = json_decode($value, true); |
| 223 | 223 | } |
| 224 | 224 | |
@@ -250,7 +250,7 @@ discard block |
||
| 250 | 250 | |
| 251 | 251 | if ($this->handleMultipleFiles) { |
| 252 | 252 | // ensure we have an array of values when field is not casted in model. |
| 253 | - if (! isset($entry->getCasts()[$this->name]) && is_string($values)) { |
|
| 253 | + if (!isset($entry->getCasts()[$this->name]) && is_string($values)) { |
|
| 254 | 254 | $values = json_decode($values, true); |
| 255 | 255 | } |
| 256 | 256 | foreach ($values ?? [] as $value) { |
@@ -267,7 +267,7 @@ discard block |
||
| 267 | 267 | |
| 268 | 268 | private function performFileDeletion(Model $entry) |
| 269 | 269 | { |
| 270 | - if (! $this->handleRepeatableFiles) { |
|
| 270 | + if (!$this->handleRepeatableFiles) { |
|
| 271 | 271 | $this->deleteFiles($entry); |
| 272 | 272 | |
| 273 | 273 | return; |
@@ -296,7 +296,7 @@ discard block |
||
| 296 | 296 | |
| 297 | 297 | $previousValue = $entry->getOriginal($field); |
| 298 | 298 | |
| 299 | - if (! $previousValue) { |
|
| 299 | + if (!$previousValue) { |
|
| 300 | 300 | return $previousValue; |
| 301 | 301 | } |
| 302 | 302 | |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | 'operation' => 'list', |
| 28 | 28 | ]); |
| 29 | 29 | |
| 30 | - if (! isset($this->setupDetailsRowRoute) || $this->setupDetailsRowRoute === true) { |
|
| 30 | + if (!isset($this->setupDetailsRowRoute) || $this->setupDetailsRowRoute === true) { |
|
| 31 | 31 | Route::get($segment.'/{id}/details', [ |
| 32 | 32 | 'as' => $routeName.'.showDetailsRow', |
| 33 | 33 | 'uses' => $controller.'@showDetailsRow', |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | { |
| 44 | 44 | $this->crud->allowAccess('list'); |
| 45 | 45 | |
| 46 | - $this->crud->operation('list', function () { |
|
| 46 | + $this->crud->operation('list', function() { |
|
| 47 | 47 | $this->crud->loadDefaultOperationSettingsFromConfig(); |
| 48 | 48 | }); |
| 49 | 49 | } |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | $search = request()->input('search'); |
| 81 | 81 | |
| 82 | 82 | // check if length is allowed by developer |
| 83 | - if ($length && ! in_array($length, $this->crud->getPageLengthMenu()[0])) { |
|
| 83 | + if ($length && !in_array($length, $this->crud->getPageLengthMenu()[0])) { |
|
| 84 | 84 | return response()->json([ |
| 85 | 85 | 'error' => 'Unknown page length.', |
| 86 | 86 | ], 400); |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | public function getColumnsNames() |
| 21 | 21 | { |
| 22 | 22 | return array_values( |
| 23 | - array_map(function ($item) { |
|
| 23 | + array_map(function($item) { |
|
| 24 | 24 | return $item->getName(); |
| 25 | 25 | }, $this->getColumns()) |
| 26 | 26 | ); |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | */ |
| 35 | 35 | public function getColumnType(string $columnName) |
| 36 | 36 | { |
| 37 | - if (! $this->schemaExists() || ! $this->schema->hasColumn($columnName)) { |
|
| 37 | + if (!$this->schemaExists() || !$this->schema->hasColumn($columnName)) { |
|
| 38 | 38 | return 'varchar'; |
| 39 | 39 | } |
| 40 | 40 | |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | */ |
| 52 | 52 | public function hasColumn($columnName) |
| 53 | 53 | { |
| 54 | - if (! $this->schemaExists()) { |
|
| 54 | + if (!$this->schemaExists()) { |
|
| 55 | 55 | return false; |
| 56 | 56 | } |
| 57 | 57 | |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | */ |
| 67 | 67 | public function columnIsNullable($columnName) |
| 68 | 68 | { |
| 69 | - if (! $this->hasColumn($columnName)) { |
|
| 69 | + if (!$this->hasColumn($columnName)) { |
|
| 70 | 70 | return true; |
| 71 | 71 | } |
| 72 | 72 | |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | */ |
| 84 | 84 | public function columnHasDefault($columnName) |
| 85 | 85 | { |
| 86 | - if (! $this->hasColumn($columnName)) { |
|
| 86 | + if (!$this->hasColumn($columnName)) { |
|
| 87 | 87 | return false; |
| 88 | 88 | } |
| 89 | 89 | |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | */ |
| 101 | 101 | public function getColumnDefault($columnName) |
| 102 | 102 | { |
| 103 | - if (! $this->hasColumn($columnName)) { |
|
| 103 | + if (!$this->hasColumn($columnName)) { |
|
| 104 | 104 | return false; |
| 105 | 105 | } |
| 106 | 106 | |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | */ |
| 117 | 117 | public function getColumns() |
| 118 | 118 | { |
| 119 | - if (! $this->schemaExists()) { |
|
| 119 | + if (!$this->schemaExists()) { |
|
| 120 | 120 | return []; |
| 121 | 121 | } |
| 122 | 122 | |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | */ |
| 131 | 131 | private function schemaExists() |
| 132 | 132 | { |
| 133 | - if (! empty($this->schema)) { |
|
| 133 | + if (!empty($this->schema)) { |
|
| 134 | 134 | return true; |
| 135 | 135 | } |
| 136 | 136 | |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | { |
| 27 | 27 | $connection = $connection ?: config('database.default'); |
| 28 | 28 | |
| 29 | - self::$schema[$connection] = LazyCollection::make(self::getCreateSchema($connection)->getTables())->mapWithKeys(function ($table, $key) use ($connection) { |
|
| 29 | + self::$schema[$connection] = LazyCollection::make(self::getCreateSchema($connection)->getTables())->mapWithKeys(function($table, $key) use ($connection) { |
|
| 30 | 30 | $tableName = is_array($table) ? $table['name'] : $table->getName(); |
| 31 | 31 | |
| 32 | 32 | if ($existingTable = self::$schema[$connection][$tableName] ?? false) { |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | */ |
| 66 | 66 | private static function generateDatabaseSchema(string $connection, string $table) |
| 67 | 67 | { |
| 68 | - if (! isset(self::$schema[$connection][$table])) { |
|
| 68 | + if (!isset(self::$schema[$connection][$table])) { |
|
| 69 | 69 | self::$schema[$connection][$table] = self::mapTable($connection, $table); |
| 70 | 70 | } |
| 71 | 71 | } |
@@ -74,20 +74,19 @@ discard block |
||
| 74 | 74 | { |
| 75 | 75 | try { |
| 76 | 76 | $table = method_exists(self::getCreateSchema($connection), 'getTable') ? |
| 77 | - self::getCreateSchema($connection)->getTable($tableName) : |
|
| 78 | - self::getCreateSchema($connection)->getColumns($tableName); |
|
| 77 | + self::getCreateSchema($connection)->getTable($tableName) : self::getCreateSchema($connection)->getColumns($tableName); |
|
| 79 | 78 | } catch (\Exception $e) { |
| 80 | 79 | return new Table($tableName, []); |
| 81 | 80 | } |
| 82 | 81 | |
| 83 | - if (! is_array($table) || empty($table)) { |
|
| 82 | + if (!is_array($table) || empty($table)) { |
|
| 84 | 83 | return $table; |
| 85 | 84 | } |
| 86 | 85 | |
| 87 | 86 | $schemaManager = self::getSchemaManager($connection); |
| 88 | 87 | $indexes = $schemaManager->getIndexes($tableName); |
| 89 | 88 | |
| 90 | - $indexes = array_map(function ($index) { |
|
| 89 | + $indexes = array_map(function($index) { |
|
| 91 | 90 | return $index['columns']; |
| 92 | 91 | }, $indexes); |
| 93 | 92 | |
@@ -105,7 +104,7 @@ discard block |
||
| 105 | 104 | |
| 106 | 105 | $indexes = self::$schema[$connection][$table]->getIndexes(); |
| 107 | 106 | |
| 108 | - $indexes = \Illuminate\Support\Arr::flatten(array_map(function ($index) { |
|
| 107 | + $indexes = \Illuminate\Support\Arr::flatten(array_map(function($index) { |
|
| 109 | 108 | return is_string($index) ? $index : $index->getColumns(); |
| 110 | 109 | }, $indexes)); |
| 111 | 110 | |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | return ['name' => Str::replace(' ', '', $field)]; |
| 116 | 116 | } |
| 117 | 117 | |
| 118 | - if (is_array($field) && ! isset($field['name'])) { |
|
| 118 | + if (is_array($field) && !isset($field['name'])) { |
|
| 119 | 119 | abort(500, 'All fields must have their name defined'); |
| 120 | 120 | } |
| 121 | 121 | |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | } |
| 190 | 190 | // if there's a model defined, but no attribute |
| 191 | 191 | // guess an attribute using the identifiableAttribute functionality in CrudTrait |
| 192 | - if (isset($field['model']) && ! isset($field['attribute']) && method_exists($field['model'], 'identifiableAttribute')) { |
|
| 192 | + if (isset($field['model']) && !isset($field['attribute']) && method_exists($field['model'], 'identifiableAttribute')) { |
|
| 193 | 193 | $field['attribute'] = (new $field['model']())->identifiableAttribute(); |
| 194 | 194 | } |
| 195 | 195 | |
@@ -205,7 +205,7 @@ discard block |
||
| 205 | 205 | */ |
| 206 | 206 | protected function makeSureFieldHasLabel($field) |
| 207 | 207 | { |
| 208 | - if (! isset($field['label'])) { |
|
| 208 | + if (!isset($field['label'])) { |
|
| 209 | 209 | $name = str_replace(',', ' ', $field['name']); |
| 210 | 210 | $name = str_replace('_id', '', $name); |
| 211 | 211 | $field['label'] = mb_ucfirst(str_replace('_', ' ', $name)); |
@@ -223,7 +223,7 @@ discard block |
||
| 223 | 223 | */ |
| 224 | 224 | protected function makeSureFieldHasType($field) |
| 225 | 225 | { |
| 226 | - if (! isset($field['type'])) { |
|
| 226 | + if (!isset($field['type'])) { |
|
| 227 | 227 | $field['type'] = isset($field['relation_type']) ? $this->inferFieldTypeFromRelationType($field['relation_type']) : $this->inferFieldTypeFromDbColumnType($field['name']); |
| 228 | 228 | } |
| 229 | 229 | |
@@ -256,16 +256,16 @@ discard block |
||
| 256 | 256 | */ |
| 257 | 257 | protected function makeSureSubfieldsHaveNecessaryAttributes($field) |
| 258 | 258 | { |
| 259 | - if (! isset($field['subfields']) || ! is_array($field['subfields'])) { |
|
| 259 | + if (!isset($field['subfields']) || !is_array($field['subfields'])) { |
|
| 260 | 260 | return $field; |
| 261 | 261 | } |
| 262 | 262 | |
| 263 | - if (! is_multidimensional_array($field['subfields'], true)) { |
|
| 263 | + if (!is_multidimensional_array($field['subfields'], true)) { |
|
| 264 | 264 | abort(500, 'Subfields of «'.$field['name'].'» are malformed. Make sure you provide an array of subfields.'); |
| 265 | 265 | } |
| 266 | 266 | |
| 267 | 267 | foreach ($field['subfields'] as $key => $subfield) { |
| 268 | - if (empty($subfield) || ! isset($subfield['name'])) { |
|
| 268 | + if (empty($subfield) || !isset($subfield['name'])) { |
|
| 269 | 269 | abort(500, 'A subfield of «'.$field['name'].'» is malformed. Subfield attribute name can\'t be empty.'); |
| 270 | 270 | } |
| 271 | 271 | |
@@ -278,7 +278,7 @@ discard block |
||
| 278 | 278 | |
| 279 | 279 | $subfield['parentFieldName'] = $field['name']; |
| 280 | 280 | |
| 281 | - if (! isset($field['model'])) { |
|
| 281 | + if (!isset($field['model'])) { |
|
| 282 | 282 | // we're inside a simple 'repeatable' with no model/relationship, so |
| 283 | 283 | // we assume all subfields are supposed to be text fields |
| 284 | 284 | $subfield['type'] = $subfield['type'] ?? 'text'; |
@@ -305,15 +305,15 @@ discard block |
||
| 305 | 305 | case 'BelongsToMany': |
| 306 | 306 | $pivotSelectorField = static::getPivotFieldStructure($field); |
| 307 | 307 | |
| 308 | - $pivot = Arr::where($field['subfields'], function ($item) use ($pivotSelectorField) { |
|
| 308 | + $pivot = Arr::where($field['subfields'], function($item) use ($pivotSelectorField) { |
|
| 309 | 309 | return $item['name'] === $pivotSelectorField['name']; |
| 310 | 310 | }); |
| 311 | 311 | |
| 312 | - if (! empty($pivot)) { |
|
| 312 | + if (!empty($pivot)) { |
|
| 313 | 313 | break; |
| 314 | 314 | } |
| 315 | 315 | |
| 316 | - if($field['allow_multiple_pivots'] ?? false) { |
|
| 316 | + if ($field['allow_multiple_pivots'] ?? false) { |
|
| 317 | 317 | $pivotSelectorField['allow_multiple_pivots'] = true; |
| 318 | 318 | $field['subfields'] = Arr::prepend($field['subfields'], [ |
| 319 | 319 | 'name' => $field['pivot_key_name'] ?? 'id', |
@@ -336,11 +336,11 @@ discard block |
||
| 336 | 336 | $entity = isset($field['baseEntity']) ? $field['baseEntity'].'.'.$field['entity'] : $field['entity']; |
| 337 | 337 | $relationInstance = $this->getRelationInstance(['entity' => $entity]); |
| 338 | 338 | |
| 339 | - $localKeyField = Arr::where($field['subfields'], function ($item) use ($relationInstance) { |
|
| 339 | + $localKeyField = Arr::where($field['subfields'], function($item) use ($relationInstance) { |
|
| 340 | 340 | return $item['name'] === $relationInstance->getRelated()->getKeyName(); |
| 341 | 341 | }); |
| 342 | 342 | |
| 343 | - if (! empty($localKeyField)) { |
|
| 343 | + if (!empty($localKeyField)) { |
|
| 344 | 344 | break; |
| 345 | 345 | } |
| 346 | 346 | |
@@ -365,7 +365,7 @@ discard block |
||
| 365 | 365 | { |
| 366 | 366 | // if a tab was mentioned, we should enable it |
| 367 | 367 | if (isset($field['tab'])) { |
| 368 | - if (! $this->tabsEnabled()) { |
|
| 368 | + if (!$this->tabsEnabled()) { |
|
| 369 | 369 | $this->enableTabs(); |
| 370 | 370 | } |
| 371 | 371 | } |
@@ -154,7 +154,7 @@ |
||
| 154 | 154 | if(isset($value[$keyName])) { |
| 155 | 155 | $relation->newPivot()->where($keyName, $value[$keyName])->update($this->preparePivotAttributesForUpdate($value, $relation)); |
| 156 | 156 | } else { |
| 157 | - $relation->newPivot()->create($this->preparePivotAttributesForCreate($value, $relation, $item->getKey())); |
|
| 157 | + $relation->newPivot()->create($this->preparePivotAttributesForCreate($value, $relation, $item->getKey())); |
|
| 158 | 158 | } |
| 159 | 159 | } |
| 160 | 160 | break; |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | // - a single dimensional array: [1,2,3] |
| 124 | 124 | // - an array of arrays: [[1][2][3]] |
| 125 | 125 | // if is as single dimensional array we can only attach. |
| 126 | - if ($relationValues === null || ! is_multidimensional_array($relationValues)) { |
|
| 126 | + if ($relationValues === null || !is_multidimensional_array($relationValues)) { |
|
| 127 | 127 | $this->attachManyRelation($item, $relation, $relationDetails, $relationValues); |
| 128 | 128 | } else { |
| 129 | 129 | $this->createManyEntries($item, $relation, $relationMethod, $relationDetails); |
@@ -144,14 +144,14 @@ discard block |
||
| 144 | 144 | $dbValues = $relation->get()->pluck($keyName)->all(); |
| 145 | 145 | $toDelete = array_diff($dbValues, $sentIds); |
| 146 | 146 | |
| 147 | - if (! empty($toDelete)) { |
|
| 148 | - foreach($toDelete as $id) { |
|
| 147 | + if (!empty($toDelete)) { |
|
| 148 | + foreach ($toDelete as $id) { |
|
| 149 | 149 | $relation->newPivot()->where($keyName, $id)->delete(); |
| 150 | 150 | } |
| 151 | 151 | } |
| 152 | - foreach($values as $value) { |
|
| 152 | + foreach ($values as $value) { |
|
| 153 | 153 | // if it's an existing pivot, update it |
| 154 | - if(isset($value[$keyName])) { |
|
| 154 | + if (isset($value[$keyName])) { |
|
| 155 | 155 | $relation->newPivot()->where($keyName, $value[$keyName])->update($this->preparePivotAttributesForUpdate($value, $relation)); |
| 156 | 156 | } else { |
| 157 | 157 | $relation->newPivot()->create($this->preparePivotAttributesForCreate($value, $relation, $item->getKey())); |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | } |
| 185 | 185 | } |
| 186 | 186 | |
| 187 | - private function preparePivotAttributesForCreate(array $attributes, BelongsToMany $relation, string|int $relatedItemKey) { |
|
| 187 | + private function preparePivotAttributesForCreate(array $attributes, BelongsToMany $relation, string | int $relatedItemKey) { |
|
| 188 | 188 | $attributes[$relation->getForeignPivotKeyName()] = $relatedItemKey; |
| 189 | 189 | $attributes[$relation->getRelatedPivotKeyName()] = $attributes[$relation->getRelationName()]; |
| 190 | 190 | $pivotKeyName = $attributes['pivot_key_name'] ?? 'id'; |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | } |
| 332 | 332 | // if column is not nullable in database, and there is no column default (null), |
| 333 | 333 | // we will delete the entry from the database, otherwise it will throw and ugly DB error. |
| 334 | - if (! $relationColumnIsNullable && $dbColumnDefault === null) { |
|
| 334 | + if (!$relationColumnIsNullable && $dbColumnDefault === null) { |
|
| 335 | 335 | return $removedEntries->lazy()->each->delete(); |
| 336 | 336 | } |
| 337 | 337 | |
@@ -376,7 +376,7 @@ discard block |
||
| 376 | 376 | } |
| 377 | 377 | |
| 378 | 378 | // use the collection of sent ids to match against database ids, delete the ones not found in the submitted ids. |
| 379 | - if (! empty($relatedItemsSent)) { |
|
| 379 | + if (!empty($relatedItemsSent)) { |
|
| 380 | 380 | // we perform the cleanup of removed database items |
| 381 | 381 | $entry->{$relationMethod}()->whereNotIn($relatedModelLocalKey, $relatedItemsSent)->lazy()->each->delete(); |
| 382 | 382 | } |
@@ -759,7 +759,7 @@ discard block |
||
| 759 | 759 | |
| 760 | 760 | public function testCreateBelongsToFake() |
| 761 | 761 | { |
| 762 | - $belongsToField = [ // select_grouped |
|
| 762 | + $belongsToField = [// select_grouped |
|
| 763 | 763 | 'label' => 'Select_grouped', |
| 764 | 764 | 'type' => 'select_grouped', //https://github.com/Laravel-Backpack/CRUD/issues/502 |
| 765 | 765 | 'name' => 'bang_relation_field', |
@@ -895,7 +895,7 @@ discard block |
||
| 895 | 895 | 'nickname' => 'i_have_has_one', |
| 896 | 896 | 'profile_picture' => 'ohh my picture 1.jpg', |
| 897 | 897 | 'article' => 1, |
| 898 | - 'addresses' => [ // HasOne is tested in other test function |
|
| 898 | + 'addresses' => [// HasOne is tested in other test function |
|
| 899 | 899 | [ |
| 900 | 900 | 'city' => 2, |
| 901 | 901 | 'street' => 'test', |
@@ -1645,7 +1645,7 @@ discard block |
||
| 1645 | 1645 | { |
| 1646 | 1646 | $faker = Factory::create(); |
| 1647 | 1647 | |
| 1648 | - if($initCrud) { |
|
| 1648 | + if ($initCrud) { |
|
| 1649 | 1649 | $this->crudPanel->setModel(User::class); |
| 1650 | 1650 | $this->crudPanel->addFields($this->userInputFieldsNoRelationships); |
| 1651 | 1651 | $this->crudPanel->addField([ |