# user-access-manager/2.3.17/src/Config/ConfigParameterInterface.php

User Access Manager, version 2.3.17. 15 lines.

- Page: https://pluginprobe.com/plugins/user-access-manager/2.3.17/code/src/Config/ConfigParameterInterface.php
- Raw: https://pluginprobe.com/plugins/user-access-manager/2.3.17/raw/src/Config/ConfigParameterInterface.php
- Modified: 2026-07-31T13:25:38+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.17/code/src/Config/ConfigParameterInterface.php#L10-L20`.

```php
<?php

declare(strict_types=1);

namespace UserAccessManager\Config;

interface ConfigParameterInterface
{
    public function isValidValue(mixed $value): bool;

    public function setValue(mixed $value);

    public function getValue(): mixed;
}

```
