Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed Apr 16, 2024
1 parent 3bc4c27 commit 28ac786
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Foundation/Bootstrap/EnsuresDefaultConfiguration.php
Expand Up @@ -32,9 +32,8 @@ public function bootstrap(Application $app): void
'APP_DEBUG' => ['app.debug' => true],
'DB_CONNECTION' => \defined('TESTBENCH_DUSK') ? ['database.default' => 'testing'] : null,
])->filter()
->reject(static function ($config, $key) {
return Env::has($key);
})->values()
->reject(static fn ($config, $key) => Env::has($key))
->values()
->all(),
]);
}
Expand Down

0 comments on commit 28ac786

Please sign in to comment.