Skip to content

Commit 482fe1f

Browse files
committed
:octocat:
1 parent 220de07 commit 482fe1f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Drivers/MSSqlSrvPDO.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
namespace chillerlan\Database\Drivers;
1414

15-
use chillerlan\Database\DatabaseOptions;
1615
use chillerlan\Database\Dialects\MSSQL;
16+
use chillerlan\Traits\ContainerInterface;
1717
use PDO;
1818
use Psr\{
1919
Log\LoggerInterface, SimpleCache\CacheInterface
@@ -30,11 +30,11 @@ class MSSqlSrvPDO extends PDODriverAbstract{
3030
/**
3131
* MSSqlSrvPDO constructor.
3232
*
33-
* @param \chillerlan\Database\DatabaseOptions $options
33+
* @param \chillerlan\Traits\ContainerInterface $options
3434
* @param \Psr\SimpleCache\CacheInterface|null $cache
3535
* @param \Psr\Log\LoggerInterface|null $log
3636
*/
37-
public function __construct(DatabaseOptions $options, CacheInterface $cache = null, LoggerInterface $log = null){
37+
public function __construct(ContainerInterface $options, CacheInterface $cache = null, LoggerInterface $log = null){
3838
unset($this->pdo_options[PDO::ATTR_EMULATE_PREPARES]);
3939

4040
// @todo

0 commit comments

Comments
 (0)