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

User Access Manager, version 2.3.12. 21 lines.

- Page: https://pluginprobe.com/plugins/user-access-manager/2.3.12/code/src/Config/ConfigFactory.php
- Raw: https://pluginprobe.com/plugins/user-access-manager/2.3.12/raw/src/Config/ConfigFactory.php
- Modified: 2026-05-20T16:00:56+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.12/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);
    }
}

```
