Autarky\Http\SessionHandlerFactory::__construct PHP Метод

__construct() публичный Метод

Constructor.
public __construct ( Autarky\Container\ClassResolverInterface $container, Autarky\Config\ConfigInterface $config )
$container Autarky\Container\ClassResolverInterface
$config Autarky\Config\ConfigInterface
    public function __construct(ClassResolverInterface $container, ConfigInterface $config)
    {
        $this->container = $container;
        $this->config = $config;
        $this->factories = ['native' => [$this, 'makeNativeHandler'], 'file' => [$this, 'makeFileHandler'], 'pdo' => [$this, 'makePdoHandler'], 'mongo' => [$this, 'makeMongoHandler'], 'memcache' => [$this, 'makeMemcacheHandler'], 'memcached' => [$this, 'makeMemcachedHandler'], 'null' => [$this, 'makeNullHandler']];
    }