Skip to content

Commit d3ac706

Browse files
committed
Fixes regression in "mapped" parameters for Pdo.
Signed-off-by: Joey Smith <jsmith@webinertia.net> Signed-off-by: Joey Smith <jsmith@webinertia.net>
1 parent c1ca88e commit d3ac706

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Driver/Pdo/Pdo.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Laminas\Db\Adapter\Mysql\Driver\Pdo;
44

5-
use Laminas\Db\Adapter\Driver\DriverInterface;
5+
use Laminas\Db\Adapter\Driver\PdoDriverInterface;
66
use Laminas\Db\Adapter\Driver\Feature\AbstractFeature;
77
use Laminas\Db\Adapter\Driver\Feature\DriverFeatureInterface;
88
use Laminas\Db\Adapter\Exception;
@@ -18,7 +18,7 @@
1818
use function sprintf;
1919
use function ucfirst;
2020

21-
class Pdo implements DriverInterface, DriverFeatureInterface, Profiler\ProfilerAwareInterface
21+
class Pdo implements PdoDriverInterface, DriverFeatureInterface, Profiler\ProfilerAwareInterface
2222
{
2323
/**
2424
* @const

0 commit comments

Comments
 (0)