File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1111use Laminas \Db \Adapter \Platform \PlatformInterface ;
1212use Laminas \Db \Adapter \Profiler ;
1313use Laminas \Db \Container \AdapterManager ;
14- use Laminas \Db \ResultSet \ ResultSetInterface ;
14+ use Laminas \Db \ResultSet ;
1515use Laminas \ServiceManager \Factory \DelegatorFactoryInterface ;
1616use Laminas \ServiceManager \Factory \InvokableFactory ;
1717use 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
You can’t perform that action at this time.
0 commit comments