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 Dec 5, 2024
1 parent 7c6da5e commit 1ddd256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Concerns/HandlesDatabases.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ protected function usesSqliteInMemoryDatabaseConnection(?string $connection = nu
/** @var array{driver: string, database: string}|null $database */
$database = $config->get("database.connections.{$connection}");

if (is_null($database) || $database['driver'] !== 'sqlite') {
if (\is_null($database) || $database['driver'] !== 'sqlite') {
return false;
}

Expand Down

0 comments on commit 1ddd256

Please sign in to comment.