mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
Changed User\Driver->authorize to return a type-hint of bool
This commit is contained in:
parent
2c134c76dc
commit
34c83e059d
1 changed files with 3 additions and 3 deletions
2
vendor/JKingWeb/NewsSync/User/Driver.php
vendored
2
vendor/JKingWeb/NewsSync/User/Driver.php
vendored
|
@ -17,7 +17,7 @@ Interface Driver {
|
|||
static function driverName(): string;
|
||||
function driverFunctions(string $function = null);
|
||||
function auth(string $user, string $password): bool;
|
||||
function authorize(string $affectedUser, string $action);
|
||||
function authorize(string $affectedUser, string $action): bool;
|
||||
function userExists(string $user): bool;
|
||||
function userAdd(string $user, string $password = null): bool;
|
||||
function userRemove(string $user): bool;
|
||||
|
|
Loading…
Reference in a new issue