genby8

Results 2 comments of genby8

Thanks for the quick response. It is a pity that it is impossible to use the wrapper.

```php 'service_manager' => [ 'factories' => [ SaveHandlerInterface::class => SaveHandlerDbFactory::class, SaveHandlerDbFactory::class => InvokableFactory::class, ] ] ``` ```php namespace App\Session\SaveHandler; use Interop\Container\ContainerInterface; use Laminas\Db\Adapter\Adapter; use Laminas\Db\TableGateway\TableGateway; use Laminas\ServiceManager\Factory\FactoryInterface; use Laminas\Session\SaveHandler\DbTableGateway; use...