We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -63,7 +63,7 @@ |
||
| 63 | 63 | // we get the first column from database |
| 64 | 64 | // that is NOT indexed (usually primary, foreign keys) |
| 65 | 65 | foreach ($columns as $columnName => $columnProperties) { |
| 66 | - if (! in_array($columnName, $indexedColumns)) { |
|
| 66 | + if (!in_array($columnName, $indexedColumns)) { |
|
| 67 | 67 | //check for convention "field<_id>" in case developer didn't add foreign key constraints. |
| 68 | 68 | if (strpos($columnName, '_id') !== false) { |
| 69 | 69 | continue; |
@@ -18,7 +18,7 @@ |
||
| 18 | 18 | 'middleware' => config('backpack.base.web_middleware', 'web'), |
| 19 | 19 | 'prefix' => config('backpack.base.route_prefix'), |
| 20 | 20 | ], |
| 21 | - function () { |
|
| 21 | + function() { |
|
| 22 | 22 | // if not otherwise configured, setup the auth routes |
| 23 | 23 | if (config('backpack.base.setup_auth_routes')) { |
| 24 | 24 | // Authentication Routes... |