We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -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 | $dbColumns = $this->getDbTableColumns(); |
@@ -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 | |
@@ -210,12 +210,12 @@ discard block |
||
| 210 | 210 | { |
| 211 | 211 | $fillable = $this->model->getFillable(); |
| 212 | 212 | |
| 213 | - if (! $this->driverIsSql()) { |
|
| 213 | + if (!$this->driverIsSql()) { |
|
| 214 | 214 | $columns = $fillable; |
| 215 | 215 | } else { |
| 216 | 216 | // Automatically-set columns should be both in the database, and in the $fillable variable on the Eloquent Model |
| 217 | 217 | $columns = $this->model::getDbTableSchema()->getColumnsNames(); |
| 218 | - if (! empty($fillable)) { |
|
| 218 | + if (!empty($fillable)) { |
|
| 219 | 219 | $columns = array_intersect($columns, $fillable); |
| 220 | 220 | } |
| 221 | 221 | } |
@@ -848,7 +848,7 @@ |
||
| 848 | 848 | |
| 849 | 849 | public function testSetDoctrineTypesMapping() |
| 850 | 850 | { |
| 851 | - if (! method_exists($this->crudPanel->getModel()->getConnection(), 'getDoctrineConnection')) { |
|
| 851 | + if (!method_exists($this->crudPanel->getModel()->getConnection(), 'getDoctrineConnection')) { |
|
| 852 | 852 | $this->markTestSkipped('This test is only for Laravel 10, Laravel 11 does not have dbal as a dependency anymore'); |
| 853 | 853 | } |
| 854 | 854 | |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | // - a single dimensional array: [1,2,3] |
| 123 | 123 | // - an array of arrays: [[1][2][3]] |
| 124 | 124 | // if is as single dimensional array we can only attach. |
| 125 | - if ($relationValues === null || ! is_multidimensional_array($relationValues)) { |
|
| 125 | + if ($relationValues === null || !is_multidimensional_array($relationValues)) { |
|
| 126 | 126 | $this->attachManyRelation($item, $relation, $relationDetails, $relationValues); |
| 127 | 127 | } else { |
| 128 | 128 | $this->createManyEntries($item, $relation, $relationMethod, $relationDetails); |
@@ -293,7 +293,7 @@ discard block |
||
| 293 | 293 | } |
| 294 | 294 | // if column is not nullable in database, and there is no column default (null), |
| 295 | 295 | // we will delete the entry from the database, otherwise it will throw and ugly DB error. |
| 296 | - if (! $relationColumnIsNullable && $dbColumnDefault === null) { |
|
| 296 | + if (!$relationColumnIsNullable && $dbColumnDefault === null) { |
|
| 297 | 297 | return $removedEntries->lazy()->each->delete(); |
| 298 | 298 | } |
| 299 | 299 | |
@@ -338,7 +338,7 @@ discard block |
||
| 338 | 338 | } |
| 339 | 339 | |
| 340 | 340 | // use the collection of sent ids to match against database ids, delete the ones not found in the submitted ids. |
| 341 | - if (! empty($relatedItemsSent)) { |
|
| 341 | + if (!empty($relatedItemsSent)) { |
|
| 342 | 342 | // we perform the cleanup of removed database items |
| 343 | 343 | $entry->{$relationMethod}()->whereNotIn($relatedModelLocalKey, $relatedItemsSent)->lazy()->each->delete(); |
| 344 | 344 | } |
@@ -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 | |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | */ |
| 54 | 54 | private static function generateDatabaseSchema(string $connection) |
| 55 | 55 | { |
| 56 | - if (! isset(self::$schema[$connection])) { |
|
| 56 | + if (!isset(self::$schema[$connection])) { |
|
| 57 | 57 | self::$schema[$connection] = self::mapTables($connection); |
| 58 | 58 | } |
| 59 | 59 | } |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | */ |
| 67 | 67 | private static function mapTables(string $connection) |
| 68 | 68 | { |
| 69 | - return LazyCollection::make(self::getCreateSchema($connection)->getTables())->mapWithKeys(function ($table, $key) use ($connection) { |
|
| 69 | + return LazyCollection::make(self::getCreateSchema($connection)->getTables())->mapWithKeys(function($table, $key) use ($connection) { |
|
| 70 | 70 | $tableName = is_array($table) ? $table['name'] : $table->getName(); |
| 71 | 71 | |
| 72 | 72 | if (self::$schema[$connection][$tableName] ?? false) { |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | $schemaManager = self::getSchemaManager($connection); |
| 87 | 87 | $indexes = method_exists($schemaManager, 'listTableIndexes') ? $schemaManager->listTableIndexes($table) : $schemaManager->getIndexes($table); |
| 88 | 88 | |
| 89 | - $indexes = array_map(function ($index) { |
|
| 89 | + $indexes = array_map(function($index) { |
|
| 90 | 90 | return is_array($index) ? $index['columns'] : $index->getColumns(); |
| 91 | 91 | }, $indexes); |
| 92 | 92 | |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | { |
| 100 | 100 | $indexedColumns = self::getIndexColumnNames($connection, $table); |
| 101 | 101 | |
| 102 | - return LazyCollection::make(self::getSchemaManager($connection)->getColumns($table))->mapWithKeys(function ($column, $key) use ($indexedColumns) { |
|
| 102 | + return LazyCollection::make(self::getSchemaManager($connection)->getColumns($table))->mapWithKeys(function($column, $key) use ($indexedColumns) { |
|
| 103 | 103 | $column['index'] = array_key_exists($column['name'], $indexedColumns) ? true : false; |
| 104 | 104 | |
| 105 | 105 | return [$column['name'] => $column]; |
@@ -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); |
@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | use Illuminate\Support\Facades\Log; |
| 6 | 6 | use Illuminate\Support\Str; |
| 7 | 7 | |
| 8 | -if (! function_exists('backpack_url')) { |
|
| 8 | +if (!function_exists('backpack_url')) { |
|
| 9 | 9 | /** |
| 10 | 10 | * Appends the configured backpack prefix and returns |
| 11 | 11 | * the URL using the standard Laravel helpers. |
@@ -15,13 +15,13 @@ discard block |
||
| 15 | 15 | */ |
| 16 | 16 | function backpack_url($path = null, $parameters = [], $secure = null) |
| 17 | 17 | { |
| 18 | - $path = ! $path || (substr($path, 0, 1) == '/') ? $path : '/'.$path; |
|
| 18 | + $path = !$path || (substr($path, 0, 1) == '/') ? $path : '/'.$path; |
|
| 19 | 19 | |
| 20 | 20 | return url(config('backpack.base.route_prefix', 'admin').$path, $parameters, $secure); |
| 21 | 21 | } |
| 22 | 22 | } |
| 23 | 23 | |
| 24 | -if (! function_exists('backpack_authentication_column')) { |
|
| 24 | +if (!function_exists('backpack_authentication_column')) { |
|
| 25 | 25 | /** |
| 26 | 26 | * Return the username column name. |
| 27 | 27 | * The Laravel default (and Backpack default) is 'email'. |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | } |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | -if (! function_exists('backpack_email_column')) { |
|
| 37 | +if (!function_exists('backpack_email_column')) { |
|
| 38 | 38 | /** |
| 39 | 39 | * Return the email column name. |
| 40 | 40 | * The Laravel default (and Backpack default) is 'email'. |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | } |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | -if (! function_exists('backpack_form_input')) { |
|
| 50 | +if (!function_exists('backpack_form_input')) { |
|
| 51 | 51 | /** |
| 52 | 52 | * Parse the submitted input in request('form') to an usable array. |
| 53 | 53 | * Joins the multiple[] fields in a single key and transform the dot notation fields into arrayed ones. |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | } |
| 121 | 121 | } |
| 122 | 122 | |
| 123 | -if (! function_exists('backpack_users_have_email')) { |
|
| 123 | +if (!function_exists('backpack_users_have_email')) { |
|
| 124 | 124 | /** |
| 125 | 125 | * Check if the email column is present on the user table. |
| 126 | 126 | * |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | } |
| 136 | 136 | } |
| 137 | 137 | |
| 138 | -if (! function_exists('backpack_avatar_url')) { |
|
| 138 | +if (!function_exists('backpack_avatar_url')) { |
|
| 139 | 139 | /** |
| 140 | 140 | * Returns the avatar URL of a user. |
| 141 | 141 | * |
@@ -146,11 +146,11 @@ discard block |
||
| 146 | 146 | { |
| 147 | 147 | switch (config('backpack.base.avatar_type')) { |
| 148 | 148 | case 'gravatar': |
| 149 | - if (backpack_users_have_email() && ! empty($user->email)) { |
|
| 149 | + if (backpack_users_have_email() && !empty($user->email)) { |
|
| 150 | 150 | $avatarLink = Gravatar::fallback(config('backpack.base.gravatar_fallback'))->get($user->email, ['size' => 80]); |
| 151 | 151 | |
| 152 | 152 | // if we can save it locally, for safer loading, let's do it |
| 153 | - if (in_array(Basset::basset($avatarLink, false)->name, ['INTERNALIZED', 'IN_CACHE', 'LOADED']) && ! Basset::isDevMode()) { |
|
| 153 | + if (in_array(Basset::basset($avatarLink, false)->name, ['INTERNALIZED', 'IN_CACHE', 'LOADED']) && !Basset::isDevMode()) { |
|
| 154 | 154 | return Basset::getUrl($avatarLink); |
| 155 | 155 | } |
| 156 | 156 | |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | } |
| 165 | 165 | } |
| 166 | 166 | |
| 167 | -if (! function_exists('backpack_middleware')) { |
|
| 167 | +if (!function_exists('backpack_middleware')) { |
|
| 168 | 168 | /** |
| 169 | 169 | * Return the key of the middleware used across Backpack. |
| 170 | 170 | * That middleware checks if the visitor is an admin. |
@@ -178,7 +178,7 @@ discard block |
||
| 178 | 178 | } |
| 179 | 179 | } |
| 180 | 180 | |
| 181 | -if (! function_exists('backpack_guard_name')) { |
|
| 181 | +if (!function_exists('backpack_guard_name')) { |
|
| 182 | 182 | /* |
| 183 | 183 | * Returns the name of the guard defined |
| 184 | 184 | * by the application config |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | } |
| 190 | 190 | } |
| 191 | 191 | |
| 192 | -if (! function_exists('backpack_auth')) { |
|
| 192 | +if (!function_exists('backpack_auth')) { |
|
| 193 | 193 | /* |
| 194 | 194 | * Returns the user instance if it exists |
| 195 | 195 | * of the currently authenticated admin |
@@ -201,7 +201,7 @@ discard block |
||
| 201 | 201 | } |
| 202 | 202 | } |
| 203 | 203 | |
| 204 | -if (! function_exists('backpack_user')) { |
|
| 204 | +if (!function_exists('backpack_user')) { |
|
| 205 | 205 | /* |
| 206 | 206 | * Returns back a user instance without |
| 207 | 207 | * the admin guard, however allows you |
@@ -213,7 +213,7 @@ discard block |
||
| 213 | 213 | } |
| 214 | 214 | } |
| 215 | 215 | |
| 216 | -if (! function_exists('mb_ucfirst')) { |
|
| 216 | +if (!function_exists('mb_ucfirst')) { |
|
| 217 | 217 | /** |
| 218 | 218 | * Capitalize the first letter of a string, |
| 219 | 219 | * even if that string is multi-byte (non-latin alphabet). |
@@ -234,7 +234,7 @@ discard block |
||
| 234 | 234 | } |
| 235 | 235 | } |
| 236 | 236 | |
| 237 | -if (! function_exists('backpack_view')) { |
|
| 237 | +if (!function_exists('backpack_view')) { |
|
| 238 | 238 | /** |
| 239 | 239 | * Returns a new displayable view path, based on the configured backpack view namespace. |
| 240 | 240 | * If that view doesn't exist, it falls back to the fallback namespace. |
@@ -259,8 +259,8 @@ discard block |
||
| 259 | 259 | |
| 260 | 260 | $errorMessage = 'The view: ['.$view.'] was not found in any of the following view paths: ['.implode(' ], [ ', $viewPaths).']'; |
| 261 | 261 | |
| 262 | - $errorDetails = (function () { |
|
| 263 | - if (env('APP_ENV') === 'production' || ! env('APP_DEBUG')) { |
|
| 262 | + $errorDetails = (function() { |
|
| 263 | + if (env('APP_ENV') === 'production' || !env('APP_DEBUG')) { |
|
| 264 | 264 | return ''; |
| 265 | 265 | } |
| 266 | 266 | |
@@ -276,7 +276,7 @@ discard block |
||
| 276 | 276 | } |
| 277 | 277 | } |
| 278 | 278 | |
| 279 | -if (! function_exists('backpack_theme_config')) { |
|
| 279 | +if (!function_exists('backpack_theme_config')) { |
|
| 280 | 280 | /** |
| 281 | 281 | * Returns a config value from the current theme's config file. |
| 282 | 282 | * It assumes the theme's config namespace is the same as the view namespace. |
@@ -315,7 +315,7 @@ discard block |
||
| 315 | 315 | } |
| 316 | 316 | } |
| 317 | 317 | |
| 318 | -if (! function_exists('square_brackets_to_dots')) { |
|
| 318 | +if (!function_exists('square_brackets_to_dots')) { |
|
| 319 | 319 | /** |
| 320 | 320 | * Turns a string from bracket-type array to dot-notation array. |
| 321 | 321 | * Ex: array[0][property] turns into array.0.property. |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | } |
| 332 | 332 | } |
| 333 | 333 | |
| 334 | -if (! function_exists('old_empty_or_null')) { |
|
| 334 | +if (!function_exists('old_empty_or_null')) { |
|
| 335 | 335 | /** |
| 336 | 336 | * This method is an alternative to Laravel's old() helper, which mistakenly |
| 337 | 337 | * returns NULL it two cases: |
@@ -363,7 +363,7 @@ discard block |
||
| 363 | 363 | } |
| 364 | 364 | } |
| 365 | 365 | |
| 366 | -if (! function_exists('is_multidimensional_array')) { |
|
| 366 | +if (!function_exists('is_multidimensional_array')) { |
|
| 367 | 367 | /** |
| 368 | 368 | * Check if the array is multidimensional. |
| 369 | 369 | * |
@@ -372,10 +372,10 @@ discard block |
||
| 372 | 372 | function is_multidimensional_array(array $array, bool $strict = false): bool |
| 373 | 373 | { |
| 374 | 374 | foreach ($array as $item) { |
| 375 | - if ($strict && ! is_array($item)) { |
|
| 375 | + if ($strict && !is_array($item)) { |
|
| 376 | 376 | return false; |
| 377 | 377 | } |
| 378 | - if (! $strict && is_array($item)) { |
|
| 378 | + if (!$strict && is_array($item)) { |
|
| 379 | 379 | return true; |
| 380 | 380 | } |
| 381 | 381 | } |
@@ -384,7 +384,7 @@ discard block |
||
| 384 | 384 | } |
| 385 | 385 | } |
| 386 | 386 | |
| 387 | -if (! function_exists('backpack_pro')) { |
|
| 387 | +if (!function_exists('backpack_pro')) { |
|
| 388 | 388 | /** |
| 389 | 389 | * Check if the backpack/pro package is installed. |
| 390 | 390 | * |
@@ -395,7 +395,7 @@ discard block |
||
| 395 | 395 | if (app()->runningUnitTests()) { |
| 396 | 396 | return true; |
| 397 | 397 | } |
| 398 | - if (! \Composer\InstalledVersions::isInstalled('backpack/pro')) { |
|
| 398 | + if (!\Composer\InstalledVersions::isInstalled('backpack/pro')) { |
|
| 399 | 399 | return false; |
| 400 | 400 | } |
| 401 | 401 | |