mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Remove type declarations where not yet possible
Because we don't return consistent things yet :( Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
c30b9dacae
commit
5aa0d83268
4 changed files with 4 additions and 4 deletions
|
|
@ -31,5 +31,5 @@ interface ICheckPasswordBackend {
|
|||
/**
|
||||
* @since 14.0.0
|
||||
*/
|
||||
public function checkPassword(string $loginName, string $password): string;
|
||||
public function checkPassword(string $loginName, string $password);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -32,5 +32,5 @@ interface ICountUsersBackend {
|
|||
/**
|
||||
* @since 14.0.0
|
||||
*/
|
||||
public function countUsers(): int;
|
||||
public function countUsers();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -32,5 +32,5 @@ interface IGetDisplayNameBackend {
|
|||
/**
|
||||
* @since 14.0.0
|
||||
*/
|
||||
public function getDisplayName(string $uid): string;
|
||||
public function getDisplayName($uid): string;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -32,5 +32,5 @@ interface IGetHomeBackend {
|
|||
/**
|
||||
* @since 14.0.0
|
||||
*/
|
||||
public function getHome(string $uid): string;
|
||||
public function getHome(string $uid);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue