We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | foreach (app('UploadersRepository')->getRepeatableUploadersFor($this->getRepeatableContainerName()) as $uploader) { |
| 153 | 153 | $uploadedValues = $uploader->uploadRepeatableFiles($values->pluck($uploader->getAttributeName())->toArray(), $this->getPreviousRepeatableValues($entry, $uploader)); |
| 154 | 154 | |
| 155 | - $values = $values->map(function ($item, $key) use ($uploadedValues, $uploader) { |
|
| 155 | + $values = $values->map(function($item, $key) use ($uploadedValues, $uploader) { |
|
| 156 | 156 | $item[$uploader->getAttributeName()] = $uploadedValues[$key] ?? null; |
| 157 | 157 | |
| 158 | 158 | return $item; |
@@ -183,7 +183,7 @@ discard block |
||
| 183 | 183 | |
| 184 | 184 | $values = $entry->{$this->getRepeatableContainerName()}; |
| 185 | 185 | $values = is_string($values) ? json_decode($values, true) : $values; |
| 186 | - $values = array_map(function ($item) use ($repeatableUploaders) { |
|
| 186 | + $values = array_map(function($item) use ($repeatableUploaders) { |
|
| 187 | 187 | foreach ($repeatableUploaders as $upload) { |
| 188 | 188 | $item[$upload->getAttributeName()] = $this->getValuesWithPathStripped($item, $upload); |
| 189 | 189 | } |
@@ -198,7 +198,7 @@ discard block |
||
| 198 | 198 | |
| 199 | 199 | private function retrieveRepeatableRelationFiles(Model $entry) |
| 200 | 200 | { |
| 201 | - switch($this->getRepeatableRelationType()) { |
|
| 201 | + switch ($this->getRepeatableRelationType()) { |
|
| 202 | 202 | case 'BelongsToMany': |
| 203 | 203 | case 'MorphToMany': |
| 204 | 204 | $pivotClass = app('crud')->getModel()->{$this->getUploaderSubfield()['baseEntity']}()->getPivotClass(); |
@@ -251,12 +251,12 @@ discard block |
||
| 251 | 251 | $repeatableValues ??= collect($entry->{$this->getRepeatableContainerName()}); |
| 252 | 252 | |
| 253 | 253 | foreach (app('UploadersRepository')->getRepeatableUploadersFor($this->getRepeatableContainerName()) as $upload) { |
| 254 | - if (! $upload->shouldDeleteFiles()) { |
|
| 254 | + if (!$upload->shouldDeleteFiles()) { |
|
| 255 | 255 | continue; |
| 256 | 256 | } |
| 257 | 257 | $values = $repeatableValues->pluck($upload->getName())->toArray(); |
| 258 | 258 | foreach ($values as $value) { |
| 259 | - if (! $value) { |
|
| 259 | + if (!$value) { |
|
| 260 | 260 | continue; |
| 261 | 261 | } |
| 262 | 262 | |
@@ -279,7 +279,7 @@ discard block |
||
| 279 | 279 | /** |
| 280 | 280 | * Given two multidimensional arrays/collections, merge them recursively. |
| 281 | 281 | */ |
| 282 | - protected function mergeValuesRecursive(array|Collection $array1, array|Collection $array2): array|Collection |
|
| 282 | + protected function mergeValuesRecursive(array | Collection $array1, array | Collection $array2): array | Collection |
|
| 283 | 283 | { |
| 284 | 284 | $merged = $array1; |
| 285 | 285 | foreach ($array2 as $key => &$value) { |
@@ -301,7 +301,7 @@ discard block |
||
| 301 | 301 | { |
| 302 | 302 | $items = CRUD::getRequest()->input('_order_'.$this->getRepeatableContainerName()) ?? []; |
| 303 | 303 | |
| 304 | - array_walk($items, function (&$key, $value) { |
|
| 304 | + array_walk($items, function(&$key, $value) { |
|
| 305 | 305 | $requestValue = $key[$this->getName()] ?? null; |
| 306 | 306 | $key = $this->handleMultipleFiles ? (is_string($requestValue) ? explode(',', $requestValue) : $requestValue) : $requestValue; |
| 307 | 307 | }); |
@@ -313,22 +313,22 @@ discard block |
||
| 313 | 313 | { |
| 314 | 314 | $previousValues = $entry->getOriginal($uploader->getRepeatableContainerName()); |
| 315 | 315 | |
| 316 | - if (! is_array($previousValues)) { |
|
| 316 | + if (!is_array($previousValues)) { |
|
| 317 | 317 | $previousValues = json_decode($previousValues, true); |
| 318 | 318 | } |
| 319 | 319 | |
| 320 | - if (! empty($previousValues)) { |
|
| 320 | + if (!empty($previousValues)) { |
|
| 321 | 321 | $previousValues = array_column($previousValues, $uploader->getName()); |
| 322 | 322 | } |
| 323 | 323 | |
| 324 | 324 | return $previousValues ?? []; |
| 325 | 325 | } |
| 326 | 326 | |
| 327 | - private function getValuesWithPathStripped(array|string|null $item, UploaderInterface $uploader) |
|
| 327 | + private function getValuesWithPathStripped(array | string | null $item, UploaderInterface $uploader) |
|
| 328 | 328 | { |
| 329 | 329 | $uploadedValues = $item[$uploader->getName()] ?? null; |
| 330 | 330 | if (is_array($uploadedValues)) { |
| 331 | - return array_map(function ($value) use ($uploader) { |
|
| 331 | + return array_map(function($value) use ($uploader) { |
|
| 332 | 332 | return $uploader->getValueWithoutPath($value); |
| 333 | 333 | }, $uploadedValues); |
| 334 | 334 | } |
@@ -338,8 +338,8 @@ discard block |
||
| 338 | 338 | |
| 339 | 339 | private function deleteRelationshipFiles(Model $entry): void |
| 340 | 340 | { |
| 341 | - if (! is_a($entry, Pivot::class, true) && |
|
| 342 | - ! $entry->relationLoaded($this->getRepeatableContainerName()) && |
|
| 341 | + if (!is_a($entry, Pivot::class, true) && |
|
| 342 | + !$entry->relationLoaded($this->getRepeatableContainerName()) && |
|
| 343 | 343 | method_exists($entry, $this->getRepeatableContainerName()) |
| 344 | 344 | ) { |
| 345 | 345 | $entry->loadMissing($this->getRepeatableContainerName()); |
@@ -366,8 +366,8 @@ discard block |
||
| 366 | 366 | $relatedEntries = $entry->{$this->getRepeatableContainerName()} ?? []; |
| 367 | 367 | } |
| 368 | 368 | |
| 369 | - if (! is_a($relatedEntries ?? '', Collection::class, true)) { |
|
| 370 | - $relatedEntries = ! empty($relatedEntries) ? [$relatedEntries] : [$entry]; |
|
| 369 | + if (!is_a($relatedEntries ?? '', Collection::class, true)) { |
|
| 370 | + $relatedEntries = !empty($relatedEntries) ? [$relatedEntries] : [$entry]; |
|
| 371 | 371 | } |
| 372 | 372 | |
| 373 | 373 | foreach ($relatedEntries as $relatedEntry) { |
@@ -375,9 +375,9 @@ discard block |
||
| 375 | 375 | } |
| 376 | 376 | } |
| 377 | 377 | |
| 378 | - protected function deletePivotFiles(Pivot|Model $entry) |
|
| 378 | + protected function deletePivotFiles(Pivot | Model $entry) |
|
| 379 | 379 | { |
| 380 | - if (! is_a($entry, Pivot::class, true)) { |
|
| 380 | + if (!is_a($entry, Pivot::class, true)) { |
|
| 381 | 381 | $pivots = $entry->{$this->getRepeatableContainerName()}; |
| 382 | 382 | foreach ($pivots as $pivot) { |
| 383 | 383 | $this->deletePivotModelFiles($pivot); |
@@ -387,24 +387,24 @@ discard block |
||
| 387 | 387 | } |
| 388 | 388 | |
| 389 | 389 | $pivotAttributes = $entry->getAttributes(); |
| 390 | - $connectedPivot = $entry->pivotParent->{$this->getRepeatableContainerName()}->where(function ($item) use ($pivotAttributes) { |
|
| 390 | + $connectedPivot = $entry->pivotParent->{$this->getRepeatableContainerName()}->where(function($item) use ($pivotAttributes) { |
|
| 391 | 391 | $itemPivotAttributes = $item->pivot->only(array_keys($pivotAttributes)); |
| 392 | 392 | |
| 393 | 393 | return $itemPivotAttributes === $pivotAttributes; |
| 394 | 394 | })->first(); |
| 395 | 395 | |
| 396 | - if (! $connectedPivot) { |
|
| 396 | + if (!$connectedPivot) { |
|
| 397 | 397 | return; |
| 398 | 398 | } |
| 399 | 399 | |
| 400 | 400 | $this->deletePivotModelFiles($connectedPivot); |
| 401 | 401 | } |
| 402 | 402 | |
| 403 | - private function deletePivotModelFiles(Pivot|Model $entry) |
|
| 403 | + private function deletePivotModelFiles(Pivot | Model $entry) |
|
| 404 | 404 | { |
| 405 | 405 | $files = $entry->getOriginal()['pivot_'.$this->getAttributeName()]; |
| 406 | 406 | |
| 407 | - if (! $files) { |
|
| 407 | + if (!$files) { |
|
| 408 | 408 | return; |
| 409 | 409 | } |
| 410 | 410 | |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | */ |
| 35 | 35 | public function markAsHandled(string $objectName): void |
| 36 | 36 | { |
| 37 | - if (! in_array($objectName, $this->handledUploaders)) { |
|
| 37 | + if (!in_array($objectName, $this->handledUploaders)) { |
|
| 38 | 38 | $this->handledUploaders[] = $objectName; |
| 39 | 39 | } |
| 40 | 40 | } |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | */ |
| 61 | 61 | public function getUploadFor(string $objectType, string $group): string |
| 62 | 62 | { |
| 63 | - if (! $this->hasUploadFor($objectType, $group)) { |
|
| 63 | + if (!$this->hasUploadFor($objectType, $group)) { |
|
| 64 | 64 | throw new \Exception('There is no uploader defined for the given field type.'); |
| 65 | 65 | } |
| 66 | 66 | |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | { |
| 83 | 83 | // ensure all uploaders implement the UploaderInterface |
| 84 | 84 | foreach ($uploaders as $uploader) { |
| 85 | - if (! is_a($uploader, UploaderInterface::class, true)) { |
|
| 85 | + if (!is_a($uploader, UploaderInterface::class, true)) { |
|
| 86 | 86 | throw new \Exception('The uploader class must implement the UploaderInterface.'); |
| 87 | 87 | } |
| 88 | 88 | } |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | */ |
| 103 | 103 | public function registerRepeatableUploader(string $uploadName, UploaderInterface $uploader): void |
| 104 | 104 | { |
| 105 | - if (! array_key_exists($uploadName, $this->repeatableUploaders) || ! in_array($uploader, $this->repeatableUploaders[$uploadName])) { |
|
| 105 | + if (!array_key_exists($uploadName, $this->repeatableUploaders) || !in_array($uploader, $this->repeatableUploaders[$uploadName])) { |
|
| 106 | 106 | $this->repeatableUploaders[$uploadName][] = $uploader; |
| 107 | 107 | } |
| 108 | 108 | } |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | */ |
| 137 | 137 | public function getRegisteredUploadNames(string $uploadName): array |
| 138 | 138 | { |
| 139 | - return array_map(function ($uploader) { |
|
| 139 | + return array_map(function($uploader) { |
|
| 140 | 140 | return $uploader->getName(); |
| 141 | 141 | }, $this->getRepeatableUploadersFor($uploadName)); |
| 142 | 142 | } |
@@ -167,11 +167,11 @@ discard block |
||
| 167 | 167 | |
| 168 | 168 | $uploaders = $this->getRepeatableUploadersFor($repeatableContainerName); |
| 169 | 169 | |
| 170 | - $uploader = Arr::first($uploaders, function ($uploader) use ($requestInputName) { |
|
| 170 | + $uploader = Arr::first($uploaders, function($uploader) use ($requestInputName) { |
|
| 171 | 171 | return $uploader->getName() === $requestInputName; |
| 172 | 172 | }); |
| 173 | 173 | |
| 174 | - if (! $uploader) { |
|
| 174 | + if (!$uploader) { |
|
| 175 | 175 | abort(500, 'Could not find the field in the repeatable uploaders.'); |
| 176 | 176 | } |
| 177 | 177 | |
@@ -182,16 +182,16 @@ discard block |
||
| 182 | 182 | abort(500, 'Could not find the field in the CRUD fields.'); |
| 183 | 183 | } |
| 184 | 184 | |
| 185 | - if (! $uploaderMacro = $this->getUploadCrudObjectMacroType($crudObject)) { |
|
| 185 | + if (!$uploaderMacro = $this->getUploadCrudObjectMacroType($crudObject)) { |
|
| 186 | 186 | abort(500, 'There is no uploader defined for the given field type.'); |
| 187 | 187 | } |
| 188 | 188 | |
| 189 | - if (! $this->isValidUploadField($crudObject, $uploaderMacro)) { |
|
| 189 | + if (!$this->isValidUploadField($crudObject, $uploaderMacro)) { |
|
| 190 | 190 | abort(500, 'Invalid field for upload.'); |
| 191 | 191 | } |
| 192 | 192 | |
| 193 | 193 | $uploaderConfiguration = $crudObject[$uploaderMacro] ?? []; |
| 194 | - $uploaderConfiguration = ! is_array($uploaderConfiguration) ? [] : $uploaderConfiguration; |
|
| 194 | + $uploaderConfiguration = !is_array($uploaderConfiguration) ? [] : $uploaderConfiguration; |
|
| 195 | 195 | $uploaderClass = $this->getUploadFor($crudObject['type'], $uploaderMacro); |
| 196 | 196 | |
| 197 | 197 | return new $uploaderClass(['name' => $requestInputName], $uploaderConfiguration); |
@@ -217,11 +217,11 @@ discard block |
||
| 217 | 217 | { |
| 218 | 218 | if (Str::contains($crudObject['name'], '#')) { |
| 219 | 219 | $container = Str::before($crudObject['name'], '#'); |
| 220 | - $field = array_filter(CRUD::fields()[$container]['subfields'] ?? [], function ($item) use ($crudObject, $uploaderMacro) { |
|
| 220 | + $field = array_filter(CRUD::fields()[$container]['subfields'] ?? [], function($item) use ($crudObject, $uploaderMacro) { |
|
| 221 | 221 | return $item['name'] === $crudObject['name'] && in_array($item['type'], $this->getAjaxUploadTypes($uploaderMacro)); |
| 222 | 222 | }); |
| 223 | 223 | |
| 224 | - return ! empty($field); |
|
| 224 | + return !empty($field); |
|
| 225 | 225 | } |
| 226 | 226 | |
| 227 | 227 | return in_array($crudObject['type'], $this->getAjaxUploadTypes($uploaderMacro)); |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | public function addFakes($columns = ['extras']) |
| 21 | 21 | { |
| 22 | 22 | foreach ($columns as $key => $column) { |
| 23 | - if (! isset($this->attributes[$column])) { |
|
| 23 | + if (!isset($this->attributes[$column])) { |
|
| 24 | 24 | continue; |
| 25 | 25 | } |
| 26 | 26 | |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | */ |
| 68 | 68 | public function shouldDecodeFake($column) |
| 69 | 69 | { |
| 70 | - return ! in_array($column, array_keys($this->getCasts())); |
|
| 70 | + return !in_array($column, array_keys($this->getCasts())); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | /** |
@@ -78,6 +78,6 @@ discard block |
||
| 78 | 78 | */ |
| 79 | 79 | public function shouldEncodeFake($column) |
| 80 | 80 | { |
| 81 | - return ! in_array($column, array_keys($this->getCasts())); |
|
| 81 | + return !in_array($column, array_keys($this->getCasts())); |
|
| 82 | 82 | } |
| 83 | 83 | } |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | 'operation' => 'list', |
| 29 | 29 | ]); |
| 30 | 30 | |
| 31 | - if (! isset($this->setupDetailsRowRoute) || $this->setupDetailsRowRoute === true) { |
|
| 31 | + if (!isset($this->setupDetailsRowRoute) || $this->setupDetailsRowRoute === true) { |
|
| 32 | 32 | Route::get($segment.'/{id}/details', [ |
| 33 | 33 | 'as' => $routeName.'.showDetailsRow', |
| 34 | 34 | 'uses' => $controller.'@showDetailsRow', |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | { |
| 45 | 45 | $this->crud->allowAccess('list'); |
| 46 | 46 | |
| 47 | - LifecycleHook::hookInto('list:before_setup', function () { |
|
| 47 | + LifecycleHook::hookInto('list:before_setup', function() { |
|
| 48 | 48 | $this->crud->loadDefaultOperationSettingsFromConfig(); |
| 49 | 49 | $this->crud->setOperationSetting('datatablesUrl', $this->crud->getRoute()); |
| 50 | 50 | }); |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | $search = request()->input('search'); |
| 83 | 83 | |
| 84 | 84 | // check if length is allowed by developer |
| 85 | - if ($length && ! in_array($length, $this->crud->getPageLengthMenu()[0])) { |
|
| 85 | + if ($length && !in_array($length, $this->crud->getPageLengthMenu()[0])) { |
|
| 86 | 86 | return response()->json([ |
| 87 | 87 | 'error' => 'Unknown page length.', |
| 88 | 88 | ], 400); |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create('translatable', function (Blueprint $table) { |
|
| 16 | + Schema::create('translatable', function(Blueprint $table) { |
|
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | $table->json('title'); |
| 19 | 19 | $table->json('description')->nullable(); |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | } |
| 99 | 99 | |
| 100 | 100 | //remove fields that are not in the submitted form input |
| 101 | - $relationFields = array_filter($relationFields, function ($field) use ($input) { |
|
| 101 | + $relationFields = array_filter($relationFields, function($field) use ($input) { |
|
| 102 | 102 | return Arr::has($input, $field['name']) || isset($input[$field['name']]) || Arr::has($input, Str::afterLast($field['name'], '.')); |
| 103 | 103 | }); |
| 104 | 104 | |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | // the key used to store the values is the main relation key |
| 128 | 128 | $key = Str::beforeLast($this->getOnlyRelationEntity($field), '.'); |
| 129 | 129 | |
| 130 | - if (! isset($field['parentFieldName']) && isset($field['entity'])) { |
|
| 130 | + if (!isset($field['parentFieldName']) && isset($field['entity'])) { |
|
| 131 | 131 | $mainField = $field; |
| 132 | 132 | $mainField['entity'] = Str::beforeLast($field['entity'], '.'); |
| 133 | 133 | |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | |
| 186 | 186 | // when using dot notation if relationMethod is not set we are sure we want to exclude those relations. |
| 187 | 187 | if ($this->getOnlyRelationEntity($field) !== $field['entity']) { |
| 188 | - if (! $relationMethod) { |
|
| 188 | + if (!$relationMethod) { |
|
| 189 | 189 | $excludedFields[] = $nameToExclude; |
| 190 | 190 | } |
| 191 | 191 | |
@@ -199,8 +199,8 @@ discard block |
||
| 199 | 199 | } |
| 200 | 200 | } |
| 201 | 201 | |
| 202 | - return Arr::where($input, function ($item, $key) use ($excludedFields) { |
|
| 203 | - return ! in_array($key, $excludedFields); |
|
| 202 | + return Arr::where($input, function($item, $key) use ($excludedFields) { |
|
| 203 | + return !in_array($key, $excludedFields); |
|
| 204 | 204 | }); |
| 205 | 205 | } |
| 206 | 206 | |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | $jsonCastables = ['array', 'object', 'json']; |
| 228 | 228 | $fieldCasting = $casted_attributes[$field['name']]; |
| 229 | 229 | |
| 230 | - if (in_array($fieldCasting, $jsonCastables) && isset($input[$field['name']]) && ! empty($input[$field['name']]) && ! is_array($input[$field['name']]) && ! in_array($field['name'], $translatableAttributes)) { |
|
| 230 | + if (in_array($fieldCasting, $jsonCastables) && isset($input[$field['name']]) && !empty($input[$field['name']]) && !is_array($input[$field['name']]) && !in_array($field['name'], $translatableAttributes)) { |
|
| 231 | 231 | try { |
| 232 | 232 | $input[$field['name']] = json_decode($input[$field['name']]); |
| 233 | 233 | } catch (\Exception $e) { |
@@ -48,7 +48,7 @@ |
||
| 48 | 48 | $app['config']->set('database.default', 'testing'); |
| 49 | 49 | $app['config']->set('backpack.base.route_prefix', 'admin'); |
| 50 | 50 | |
| 51 | - $app->bind('App\Http\Middleware\CheckIfAdmin', function () { |
|
| 51 | + $app->bind('App\Http\Middleware\CheckIfAdmin', function() { |
|
| 52 | 52 | return new class |
| 53 | 53 | { |
| 54 | 54 | public function handle($request, $next) |
@@ -38,8 +38,8 @@ discard block |
||
| 38 | 38 | // |
| 39 | 39 | // It's done inside a middleware closure in order to have |
| 40 | 40 | // the complete request inside the CrudPanel object. |
| 41 | - $this->middleware(function ($request, $next) { |
|
| 42 | - if (! Backpack::hasCrudController(get_class($this))) { |
|
| 41 | + $this->middleware(function($request, $next) { |
|
| 42 | + if (!Backpack::hasCrudController(get_class($this))) { |
|
| 43 | 43 | $this->initializeCrud($request); |
| 44 | 44 | |
| 45 | 45 | return $next($request); |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | protected function setupConfigurationForCurrentOperation(?string $operation = null) |
| 137 | 137 | { |
| 138 | 138 | $operationName = $operation ?? $this->crud->getCurrentOperation(); |
| 139 | - if (! $operationName) { |
|
| 139 | + if (!$operationName) { |
|
| 140 | 140 | return; |
| 141 | 141 | } |
| 142 | 142 | $setupClassName = 'setup'.Str::studly($operationName).'Operation'; |
@@ -16,8 +16,8 @@ discard block |
||
| 16 | 16 | { |
| 17 | 17 | $this->getDbColumnTypes(); |
| 18 | 18 | |
| 19 | - array_map(function ($field) use ($setFields, $setColumns) { |
|
| 20 | - if ($setFields && ! isset($this->getCleanStateFields()[$field])) { |
|
| 19 | + array_map(function($field) use ($setFields, $setColumns) { |
|
| 20 | + if ($setFields && !isset($this->getCleanStateFields()[$field])) { |
|
| 21 | 21 | $this->addField([ |
| 22 | 22 | 'name' => $field, |
| 23 | 23 | 'label' => $this->makeLabel($field), |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | ]); |
| 31 | 31 | } |
| 32 | 32 | |
| 33 | - if ($setColumns && ! in_array($field, $this->getModel()->getHidden()) && ! isset($this->columns()[$field])) { |
|
| 33 | + if ($setColumns && !in_array($field, $this->getModel()->getHidden()) && !isset($this->columns()[$field])) { |
|
| 34 | 34 | $this->addColumn([ |
| 35 | 35 | 'name' => $field, |
| 36 | 36 | 'label' => $this->makeLabel($field), |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | { |
| 53 | 53 | $dbColumnTypes = []; |
| 54 | 54 | |
| 55 | - if (! $this->driverIsSql()) { |
|
| 55 | + if (!$this->driverIsSql()) { |
|
| 56 | 56 | return $dbColumnTypes; |
| 57 | 57 | } |
| 58 | 58 | $dbColumns = $this->getDbTableColumns(); |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | |
| 118 | 118 | $dbColumnTypes = $this->getDbColumnTypes(); |
| 119 | 119 | |
| 120 | - if (! isset($dbColumnTypes[$fieldName])) { |
|
| 120 | + if (!isset($dbColumnTypes[$fieldName])) { |
|
| 121 | 121 | return 'text'; |
| 122 | 122 | } |
| 123 | 123 | |
@@ -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 | } |