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

User Access Manager, version trunk. 13 lines.

- Page: https://pluginprobe.com/plugins/user-access-manager/trunk/code/src/Setup/Update/UpdateInterface.php
- Raw: https://pluginprobe.com/plugins/user-access-manager/trunk/raw/src/Setup/Update/UpdateInterface.php
- Modified: 2025-12-09T08:20: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/trunk/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;
}

```
