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:
Roeland Jago Douma 2018-03-22 12:18:54 +01:00
parent c30b9dacae
commit 5aa0d83268
No known key found for this signature in database
GPG Key ID: F941078878347C0C
4 changed files with 4 additions and 4 deletions

View File

@ -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);
}

View File

@ -32,5 +32,5 @@ interface ICountUsersBackend {
/**
* @since 14.0.0
*/
public function countUsers(): int;
public function countUsers();
}

View File

@ -32,5 +32,5 @@ interface IGetDisplayNameBackend {
/**
* @since 14.0.0
*/
public function getDisplayName(string $uid): string;
public function getDisplayName($uid): string;
}

View File

@ -32,5 +32,5 @@ interface IGetHomeBackend {
/**
* @since 14.0.0
*/
public function getHome(string $uid): string;
public function getHome(string $uid);
}