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