opsdash-app/opsdash/tests/php/stubs/OCP/IUserManager.php
2025-11-23 15:27:38 +07:00

11 lines
148 B
PHP

<?php
declare(strict_types=1);
namespace OCP;
interface IUserManager {
/**
* @return \OCP\IUser|null
*/
public function get(string $uid);
}