# user-access-manager/2.3.6/src/Setup/Update/UpdateInterface.php

User Access Manager, version 2.3.6. 13 lines.

- Page: https://pluginprobe.com/plugins/user-access-manager/2.3.6/code/src/Setup/Update/UpdateInterface.php
- Raw: https://pluginprobe.com/plugins/user-access-manager/2.3.6/raw/src/Setup/Update/UpdateInterface.php
- Modified: 2025-12-10T07:26:40+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.6/code/src/Setup/Update/UpdateInterface.php#L10-L20`.

```php
<?php

declare(strict_types=1);

namespace UserAccessManager\Setup\Update;

interface UpdateInterface
{
    public function getVersion(): string;

    public function update(): bool;
}

```
