Skip to content

Commit 1ba7212

Browse files
committed
Signed-off-by: Joey Smith <jsmith@webinertia.net>
1 parent 2bf33e3 commit 1ba7212

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Container/AdapterManagerDelegator.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use Laminas\Db\Adapter\Platform\PlatformInterface;
1212
use Laminas\Db\Adapter\Profiler;
1313
use Laminas\Db\Container\AdapterManager;
14-
use Laminas\Db\ResultSet\ResultSetInterface;
14+
use Laminas\Db\ResultSet;
1515
use Laminas\ServiceManager\Factory\DelegatorFactoryInterface;
1616
use Laminas\ServiceManager\Factory\InvokableFactory;
1717
use Psr\Container\ContainerInterface;
@@ -28,6 +28,7 @@ public function __invoke(
2828
$adapterManager->configure([
2929
'aliases' => [
3030
Profiler\ProfilerInterface::class => Profiler\Profiler::class,
31+
ResultSet\ResultSetInterface::class => ResultSet\ResultSet::class,
3132
],
3233
'factories' => [
3334
AdapterInterface::class => AdapterFactory::class,
@@ -36,7 +37,7 @@ public function __invoke(
3637
PlatformInterface::class => PlatformInterfaceFactory::class,
3738
Profiler\Profiler::class => InvokableFactory::class,
3839
ResultInterface::class => ResultInterfaceFactory::class,
39-
ResultSetInterface::class => InvokableFactory::class,
40+
ResultSet\ResultSet::class => InvokableFactory::class,
4041
],
4142
]);
4243

0 commit comments

Comments
 (0)