From 608b25207a1d5b81ec72ad4394c615833ee29717 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Wed, 24 Jan 2018 13:17:00 -0500 Subject: [PATCH] Fix some missed type hints --- src/Drivers/Sqlite/Driver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Drivers/Sqlite/Driver.php b/src/Drivers/Sqlite/Driver.php index 399f80f..04092ee 100644 --- a/src/Drivers/Sqlite/Driver.php +++ b/src/Drivers/Sqlite/Driver.php @@ -37,7 +37,7 @@ class Driver extends AbstractDriver { * @param string $pass * @param array $driverOptions */ - public function __construct($dsn, $user=NULL, $pass=NULL, array $driverOptions=[]) + public function __construct(string $dsn, string $user=NULL, string $pass=NULL, array $driverOptions=[]) { if (strpos($dsn, 'sqlite:') === FALSE) {