diff --git a/src/Connectors/SQLiteConnector.php b/src/Connectors/SQLiteConnector.php index 2c8643b..bd8b37a 100644 --- a/src/Connectors/SQLiteConnector.php +++ b/src/Connectors/SQLiteConnector.php @@ -32,7 +32,7 @@ public function connect(array $config) // as the developer probably wants to know if the database exists and this // SQLite driver will not throw any exception if it does not by default. if ($path === false) { - throw new Exception("Database (${config['database']}) does not exist."); + throw new Exception("Database ({$config['database']}) does not exist."); } return $this->createConnection("sqlite:{$path}", $config, $options);