We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -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,13 +74,12 @@ 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)) { |
|
| 82 | + if (!is_array($table)) { |
|
| 84 | 83 | return $table; |
| 85 | 84 | } |
| 86 | 85 | |
@@ -91,7 +90,7 @@ discard block |
||
| 91 | 90 | $schemaManager = self::getSchemaManager($connection); |
| 92 | 91 | $indexes = $schemaManager->getIndexes($tableName); |
| 93 | 92 | |
| 94 | - $indexes = array_map(function ($index) { |
|
| 93 | + $indexes = array_map(function($index) { |
|
| 95 | 94 | return $index['columns']; |
| 96 | 95 | }, $indexes); |
| 97 | 96 | |
@@ -109,7 +108,7 @@ discard block |
||
| 109 | 108 | |
| 110 | 109 | $indexes = self::$schema[$connection][$table]->getIndexes(); |
| 111 | 110 | |
| 112 | - $indexes = \Illuminate\Support\Arr::flatten(array_map(function ($index) { |
|
| 111 | + $indexes = \Illuminate\Support\Arr::flatten(array_map(function($index) { |
|
| 113 | 112 | return is_string($index) ? $index : $index->getColumns(); |
| 114 | 113 | }, $indexes)); |
| 115 | 114 | |
@@ -19,8 +19,8 @@ discard block |
||
| 19 | 19 | * - when true: `address[street]` |
| 20 | 20 | * - when false: `[address][street]` |
| 21 | 21 | */ |
| 22 | -if (! Str::hasMacro('dotsToSquareBrackets')) { |
|
| 23 | - Str::macro('dotsToSquareBrackets', function ($string, $ignore = [], $keyFirst = true) { |
|
| 22 | +if (!Str::hasMacro('dotsToSquareBrackets')) { |
|
| 23 | + Str::macro('dotsToSquareBrackets', function($string, $ignore = [], $keyFirst = true) { |
|
| 24 | 24 | $stringParts = explode('.', $string); |
| 25 | 25 | $result = ''; |
| 26 | 26 | |
@@ -34,8 +34,8 @@ discard block |
||
| 34 | 34 | return $result; |
| 35 | 35 | }); |
| 36 | 36 | } |
| 37 | -if (! CrudColumn::hasMacro('withFiles')) { |
|
| 38 | - CrudColumn::macro('withFiles', function ($uploadDefinition = [], $subfield = null, $registerUploaderEvents = true) { |
|
| 37 | +if (!CrudColumn::hasMacro('withFiles')) { |
|
| 38 | + CrudColumn::macro('withFiles', function($uploadDefinition = [], $subfield = null, $registerUploaderEvents = true) { |
|
| 39 | 39 | $uploadDefinition = is_array($uploadDefinition) ? $uploadDefinition : []; |
| 40 | 40 | /** @var CrudField|CrudColumn $this */ |
| 41 | 41 | RegisterUploadEvents::handle($this, $uploadDefinition, 'withFiles', $subfield, $registerUploaderEvents); |
@@ -44,8 +44,8 @@ discard block |
||
| 44 | 44 | }); |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | -if (! CrudField::hasMacro('withFiles')) { |
|
| 48 | - CrudField::macro('withFiles', function ($uploadDefinition = [], $subfield = null, $registerUploaderEvents = true) { |
|
| 47 | +if (!CrudField::hasMacro('withFiles')) { |
|
| 48 | + CrudField::macro('withFiles', function($uploadDefinition = [], $subfield = null, $registerUploaderEvents = true) { |
|
| 49 | 49 | $uploadDefinition = is_array($uploadDefinition) ? $uploadDefinition : []; |
| 50 | 50 | /** @var CrudField|CrudColumn $this */ |
| 51 | 51 | RegisterUploadEvents::handle($this, $uploadDefinition, 'withFiles', $subfield, $registerUploaderEvents); |
@@ -54,8 +54,8 @@ discard block |
||
| 54 | 54 | }); |
| 55 | 55 | } |
| 56 | 56 | |
| 57 | -if (! CrudColumn::hasMacro('linkTo')) { |
|
| 58 | - CrudColumn::macro('linkTo', function (string|array|Closure $routeOrConfiguration, ?array $parameters = []): static { |
|
| 57 | +if (!CrudColumn::hasMacro('linkTo')) { |
|
| 58 | + CrudColumn::macro('linkTo', function(string | array | Closure $routeOrConfiguration, ?array $parameters = []): static { |
|
| 59 | 59 | $wrapper = $this->attributes['wrapper'] ?? []; |
| 60 | 60 | |
| 61 | 61 | // parse the function input to get the actual route and parameters we'll be working with |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | |
| 69 | 69 | // if the route is a closure, we'll just call it |
| 70 | 70 | if ($route instanceof Closure) { |
| 71 | - $wrapper['href'] = function ($crud, $column, $entry, $related_key) use ($route) { |
|
| 71 | + $wrapper['href'] = function($crud, $column, $entry, $related_key) use ($route) { |
|
| 72 | 72 | return $route($entry, $related_key, $column, $crud); |
| 73 | 73 | }; |
| 74 | 74 | $this->wrapper($wrapper); |
@@ -77,13 +77,13 @@ discard block |
||
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | // if the route doesn't exist, we'll throw an exception |
| 80 | - if (! $routeInstance = Route::getRoutes()->getByName($route)) { |
|
| 80 | + if (!$routeInstance = Route::getRoutes()->getByName($route)) { |
|
| 81 | 81 | throw new \Exception("Route [{$route}] not found while building the link for column [{$this->attributes['name']}]."); |
| 82 | 82 | } |
| 83 | 83 | |
| 84 | 84 | // calculate the parameters we'll be using for the route() call |
| 85 | 85 | // (eg. if there's only one parameter and user didn't provide it, we'll assume it's the entry's related key) |
| 86 | - $parameters = (function () use ($parameters, $routeInstance, $route) { |
|
| 86 | + $parameters = (function() use ($parameters, $routeInstance, $route) { |
|
| 87 | 87 | $expectedParameters = $routeInstance->parameterNames(); |
| 88 | 88 | |
| 89 | 89 | if (count($expectedParameters) === 0) { |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | if (count($autoInferredParameter) > 1) { |
| 95 | 95 | throw new \Exception("Route [{$route}] expects parameters [".implode(', ', $expectedParameters)."]. Insufficient parameters provided in column: [{$this->attributes['name']}]."); |
| 96 | 96 | } |
| 97 | - $autoInferredParameter = current($autoInferredParameter) ? [current($autoInferredParameter) => function ($entry, $related_key, $column, $crud) { |
|
| 97 | + $autoInferredParameter = current($autoInferredParameter) ? [current($autoInferredParameter) => function($entry, $related_key, $column, $crud) { |
|
| 98 | 98 | $entity = $crud->isAttributeInRelationString($column) ? Str::before($column['entity'], '.') : $column['entity']; |
| 99 | 99 | |
| 100 | 100 | return $related_key ?? $entry->{$entity}?->getKey(); |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | })(); |
| 105 | 105 | |
| 106 | 106 | // set up the wrapper href attribute |
| 107 | - $wrapper['href'] = function ($crud, $column, $entry, $related_key) use ($route, $parameters) { |
|
| 107 | + $wrapper['href'] = function($crud, $column, $entry, $related_key) use ($route, $parameters) { |
|
| 108 | 108 | // if the parameter is callable, we'll call it |
| 109 | 109 | $parameters = collect($parameters)->map(fn ($item) => is_callable($item) ? $item($entry, $related_key, $column, $crud) : $item)->toArray(); |
| 110 | 110 | |
@@ -121,17 +121,17 @@ discard block |
||
| 121 | 121 | }); |
| 122 | 122 | } |
| 123 | 123 | |
| 124 | -if (! CrudColumn::hasMacro('linkToShow')) { |
|
| 125 | - CrudColumn::macro('linkToShow', function (): static { |
|
| 124 | +if (!CrudColumn::hasMacro('linkToShow')) { |
|
| 125 | + CrudColumn::macro('linkToShow', function(): static { |
|
| 126 | 126 | $name = $this->attributes['name']; |
| 127 | 127 | $entity = $this->attributes['entity'] ?? null; |
| 128 | 128 | $route = "$entity.show"; |
| 129 | 129 | |
| 130 | - if (! $entity) { |
|
| 130 | + if (!$entity) { |
|
| 131 | 131 | throw new \Exception("Entity not found while building the link for column [{$name}]."); |
| 132 | 132 | } |
| 133 | 133 | |
| 134 | - if (! Route::getRoutes()->getByName($route)) { |
|
| 134 | + if (!Route::getRoutes()->getByName($route)) { |
|
| 135 | 135 | throw new \Exception("Route '{$route}' not found while building the link for column [{$name}]."); |
| 136 | 136 | } |
| 137 | 137 | |
@@ -142,8 +142,8 @@ discard block |
||
| 142 | 142 | }); |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | -if (! CrudColumn::hasMacro('linkTarget')) { |
|
| 146 | - CrudColumn::macro('linkTarget', function (string $target = '_self'): static { |
|
| 145 | +if (!CrudColumn::hasMacro('linkTarget')) { |
|
| 146 | + CrudColumn::macro('linkTarget', function(string $target = '_self'): static { |
|
| 147 | 147 | $this->wrapper([ |
| 148 | 148 | ...$this->attributes['wrapper'] ?? [], |
| 149 | 149 | 'target' => $target, |
@@ -159,8 +159,8 @@ discard block |
||
| 159 | 159 | * |
| 160 | 160 | * It will go to the given CrudController and get the setupRoutes() method on it. |
| 161 | 161 | */ |
| 162 | -if (! Route::hasMacro('crud')) { |
|
| 163 | - Route::macro('crud', function ($name, $controller) { |
|
| 162 | +if (!Route::hasMacro('crud')) { |
|
| 163 | + Route::macro('crud', function($name, $controller) { |
|
| 164 | 164 | // put together the route name prefix, |
| 165 | 165 | // as passed to the Route::group() statements |
| 166 | 166 | $routeName = ''; |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | // Display general error in case it failed |
| 74 | - if (! $this->isInstalled()) { |
|
| 74 | + if (!$this->isInstalled()) { |
|
| 75 | 75 | $this->errorProgressBlock(); |
| 76 | 76 | $this->note('For further information please check the log file.'); |
| 77 | 77 | $this->note('You can also follow the manual installation process documented on GitHub.'); |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | $this->progressBlock('Publish theme config file'); |
| 85 | 85 | |
| 86 | 86 | // manually include the provider in the run-time |
| 87 | - if (! class_exists(self::$addon['provider'])) { |
|
| 87 | + if (!class_exists(self::$addon['provider'])) { |
|
| 88 | 88 | include self::$addon['provider_path'] ?? self::$addon['path'].'/src/AddonServiceProvider.php'; |
| 89 | 89 | app()->register(self::$addon['provider']); |
| 90 | 90 | } |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | ]; |
| 61 | 61 | |
| 62 | 62 | foreach ($filesToPublish as $destination => $stub) { |
| 63 | - if (! is_string($destination)) { |
|
| 63 | + if (!is_string($destination)) { |
|
| 64 | 64 | $destination = $stub; |
| 65 | 65 | $stub = null; |
| 66 | 66 | } |
@@ -71,11 +71,11 @@ discard block |
||
| 71 | 71 | continue; |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | - if (! File::isDirectory(dirname($destination))) { |
|
| 74 | + if (!File::isDirectory(dirname($destination))) { |
|
| 75 | 75 | File::makeDirectory(dirname($destination), 0755, true); |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | - if (! $stub) { |
|
| 78 | + if (!$stub) { |
|
| 79 | 79 | File::copy(__DIR__.'/../../../public/'.basename($destination), $destination); |
| 80 | 80 | $this->info("File {$destination} published."); |
| 81 | 81 | continue; |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | /** |
| 75 | 75 | * Add a column at the end of the CRUD object's "columns" array and return it. |
| 76 | 76 | */ |
| 77 | - public function addAndReturnColumn(array|string $column): CrudColumn |
|
| 77 | + public function addAndReturnColumn(array | string $column): CrudColumn |
|
| 78 | 78 | { |
| 79 | 79 | $column = $this->prepareAttributesAndAddColumn($column); |
| 80 | 80 | |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | */ |
| 123 | 123 | public function makeFirstColumn() |
| 124 | 124 | { |
| 125 | - if (! $this->columns()) { |
|
| 125 | + if (!$this->columns()) { |
|
| 126 | 126 | return false; |
| 127 | 127 | } |
| 128 | 128 | |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | */ |
| 167 | 167 | public function removeColumns($columns) |
| 168 | 168 | { |
| 169 | - if (! empty($columns)) { |
|
| 169 | + if (!empty($columns)) { |
|
| 170 | 170 | foreach ($columns as $columnKey) { |
| 171 | 171 | $this->removeColumn($columnKey); |
| 172 | 172 | } |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | */ |
| 332 | 332 | public function hasColumnWhere($attribute, $value) |
| 333 | 333 | { |
| 334 | - $match = Arr::first($this->columns(), function ($column, $columnKey) use ($attribute, $value) { |
|
| 334 | + $match = Arr::first($this->columns(), function($column, $columnKey) use ($attribute, $value) { |
|
| 335 | 335 | return isset($column[$attribute]) && $column[$attribute] == $value; |
| 336 | 336 | }); |
| 337 | 337 | |
@@ -347,7 +347,7 @@ discard block |
||
| 347 | 347 | */ |
| 348 | 348 | public function firstColumnWhere($attribute, $value) |
| 349 | 349 | { |
| 350 | - return Arr::first($this->columns(), function ($column, $columnKey) use ($attribute, $value) { |
|
| 350 | + return Arr::first($this->columns(), function($column, $columnKey) use ($attribute, $value) { |
|
| 351 | 351 | return isset($column[$attribute]) && $column[$attribute] == $value; |
| 352 | 352 | }); |
| 353 | 353 | } |
@@ -396,8 +396,8 @@ discard block |
||
| 396 | 396 | */ |
| 397 | 397 | public function countColumnsWithoutActions() |
| 398 | 398 | { |
| 399 | - return collect($this->columns())->filter(function ($column, $key) { |
|
| 400 | - return ! isset($column['hasActions']) || $column['hasActions'] == false; |
|
| 399 | + return collect($this->columns())->filter(function($column, $key) { |
|
| 400 | + return !isset($column['hasActions']) || $column['hasActions'] == false; |
|
| 401 | 401 | })->count(); |
| 402 | 402 | } |
| 403 | 403 | |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | { |
| 55 | 55 | $entry = $this->getCurrentEntry(); |
| 56 | 56 | |
| 57 | - if (! $entry) { |
|
| 57 | + if (!$entry) { |
|
| 58 | 58 | return false; |
| 59 | 59 | } |
| 60 | 60 | |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | */ |
| 70 | 70 | public function getEntry($id) |
| 71 | 71 | { |
| 72 | - if (! $this->entry) { |
|
| 72 | + if (!$this->entry) { |
|
| 73 | 73 | if ($this->getOperationSetting('eagerLoadRelationships')) { |
| 74 | 74 | $this->eagerLoadRelationshipFields(); |
| 75 | 75 | } |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | return $this->entry; |
| 81 | 81 | } |
| 82 | 82 | |
| 83 | - private function shouldUseFallbackLocale(): bool|string |
|
| 83 | + private function shouldUseFallbackLocale(): bool | string |
|
| 84 | 84 | { |
| 85 | 85 | $fallbackRequestValue = $this->getRequest()->get('_fallback_locale'); |
| 86 | 86 | |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | */ |
| 97 | 97 | public function getEntryWithLocale($id) |
| 98 | 98 | { |
| 99 | - if (! $this->entry) { |
|
| 99 | + if (!$this->entry) { |
|
| 100 | 100 | $this->entry = $this->getEntry($id); |
| 101 | 101 | } |
| 102 | 102 | |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | foreach ($crudObjects as $crudObjectName => $attributes) { |
| 148 | 148 | $relationString = isset($attributes['entity']) && $attributes['entity'] !== false ? $attributes['entity'] : ''; |
| 149 | 149 | |
| 150 | - if (! $relationString) { |
|
| 150 | + if (!$relationString) { |
|
| 151 | 151 | continue; |
| 152 | 152 | } |
| 153 | 153 | |
@@ -213,7 +213,7 @@ discard block |
||
| 213 | 213 | */ |
| 214 | 214 | public function enableDetailsRow() |
| 215 | 215 | { |
| 216 | - if (! backpack_pro()) { |
|
| 216 | + if (!backpack_pro()) { |
|
| 217 | 217 | throw new BackpackProRequiredException('Details row'); |
| 218 | 218 | } |
| 219 | 219 | |
@@ -312,7 +312,7 @@ discard block |
||
| 312 | 312 | // we will apply the same labels as the values to the menu if developer didn't |
| 313 | 313 | $this->abortIfInvalidPageLength($menu[0]); |
| 314 | 314 | |
| 315 | - if (! isset($menu[1]) || ! is_array($menu[1])) { |
|
| 315 | + if (!isset($menu[1]) || !is_array($menu[1])) { |
|
| 316 | 316 | $menu[1] = $menu[0]; |
| 317 | 317 | } |
| 318 | 318 | } else { |
@@ -400,7 +400,7 @@ discard block |
||
| 400 | 400 | */ |
| 401 | 401 | public function enableExportButtons() |
| 402 | 402 | { |
| 403 | - if (! backpack_pro()) { |
|
| 403 | + if (!backpack_pro()) { |
|
| 404 | 404 | throw new BackpackProRequiredException('Export buttons'); |
| 405 | 405 | } |
| 406 | 406 | |
@@ -15,7 +15,7 @@ |
||
| 15 | 15 | (array) config('backpack.base.middleware_key', 'admin') |
| 16 | 16 | ), |
| 17 | 17 | 'namespace' => 'App\Http\Controllers\Admin', |
| 18 | -], function () { // custom admin routes |
|
| 18 | +], function() { // custom admin routes |
|
| 19 | 19 | }); // this should be the absolute last line of this file |
| 20 | 20 | |
| 21 | 21 | /** |