Skip to content

Commit ca6d6f2

Browse files
mgrinspantaylorotwell
authored andcommitted
Fix typo (#24825)
1 parent 21709c9 commit ca6d6f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Database/Connectors/SQLiteConnector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function connect(array $config)
3131
// as the developer probably wants to know if the database exists and this
3232
// SQLite driver will not throw any exception if it does not by default.
3333
if ($path === false) {
34-
throw new InvalidArgumentException("Database (${config['database']}) does not exist.");
34+
throw new InvalidArgumentException("Database ({$config['database']}) does not exist.");
3535
}
3636

3737
return $this->createConnection("sqlite:{$path}", $config, $options);

0 commit comments

Comments
 (0)