# user-access-manager/2.3.20/src/Config/ConfigFactory.php

User Access Manager, version 2.3.20. 21 lines.

- Page: https://pluginprobe.com/plugins/user-access-manager/2.3.20/code/src/Config/ConfigFactory.php
- Raw: https://pluginprobe.com/plugins/user-access-manager/2.3.20/raw/src/Config/ConfigFactory.php
- Modified: 2026-09-10T09:55:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/user-access-manager/2.3.20/code/src/Config/ConfigFactory.php#L10-L20`.

```php
<?php

declare(strict_types=1);

namespace UserAccessManager\Config;

use UserAccessManager\Wrapper\Wordpress;

class ConfigFactory
{
    public function __construct(
        private Wordpress $wordpress
    ) {
    }

    public function createConfig(string $key): Config
    {
        return new Config($this->wordpress, $key);
    }
}

```
