Skip to content

Commit

Permalink
code style
Browse files Browse the repository at this point in the history
  • Loading branch information
stancl authored Nov 22, 2024
1 parent e792dfe commit 33a6a40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Database/Connectors/SQLiteConnector.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function connect(array $config)
str_contains($config['database'], '?mode=memory') ||
str_contains($config['database'], '&mode=memory')
) {
return $this->createConnection('sqlite:' . $config['database'], $config, $options);
return $this->createConnection('sqlite:'.$config['database'], $config, $options);
}

$path = realpath($config['database']);
Expand Down

0 comments on commit 33a6a40

Please sign in to comment.