@@ -29,8 +29,8 @@ |
||
29 | 29 | * @since 14.0.0 |
30 | 30 | */ |
31 | 31 | interface IDeleteGroupBackend { |
32 | - /** |
|
33 | - * @since 14.0.0 |
|
34 | - */ |
|
35 | - public function deleteGroup(string $gid): bool; |
|
32 | + /** |
|
33 | + * @since 14.0.0 |
|
34 | + */ |
|
35 | + public function deleteGroup(string $gid): bool; |
|
36 | 36 | } |
@@ -29,8 +29,8 @@ |
||
29 | 29 | * @since 14.0.0 |
30 | 30 | */ |
31 | 31 | interface IRemoveFromGroupBackend { |
32 | - /** |
|
33 | - * @since 14.0.0 |
|
34 | - */ |
|
35 | - public function removeFromGroup(string $uid, string $gid); |
|
32 | + /** |
|
33 | + * @since 14.0.0 |
|
34 | + */ |
|
35 | + public function removeFromGroup(string $uid, string $gid); |
|
36 | 36 | } |
@@ -29,8 +29,8 @@ |
||
29 | 29 | * @since 14.0.0 |
30 | 30 | */ |
31 | 31 | interface ICountUsersBackend { |
32 | - /** |
|
33 | - * @since 14.0.0 |
|
34 | - */ |
|
35 | - public function countUsersInGroup(string $gid, string $search = ''): int; |
|
32 | + /** |
|
33 | + * @since 14.0.0 |
|
34 | + */ |
|
35 | + public function countUsersInGroup(string $gid, string $search = ''): int; |
|
36 | 36 | } |
@@ -29,11 +29,11 @@ |
||
29 | 29 | * @since 18.0.0 |
30 | 30 | */ |
31 | 31 | interface ISetDisplayNameBackend { |
32 | - /** |
|
33 | - * @param string $gid |
|
34 | - * @param string $displayName |
|
35 | - * @return bool |
|
36 | - * @since 18.0.0 |
|
37 | - */ |
|
38 | - public function setDisplayName(string $gid, string $displayName): bool; |
|
32 | + /** |
|
33 | + * @param string $gid |
|
34 | + * @param string $displayName |
|
35 | + * @return bool |
|
36 | + * @since 18.0.0 |
|
37 | + */ |
|
38 | + public function setDisplayName(string $gid, string $displayName): bool; |
|
39 | 39 | } |
@@ -29,8 +29,8 @@ |
||
29 | 29 | * @since 14.0.0 |
30 | 30 | */ |
31 | 31 | interface IIsAdminBackend { |
32 | - /** |
|
33 | - * @since 14.0.0 |
|
34 | - */ |
|
35 | - public function isAdmin(string $uid): bool; |
|
32 | + /** |
|
33 | + * @since 14.0.0 |
|
34 | + */ |
|
35 | + public function isAdmin(string $uid): bool; |
|
36 | 36 | } |
@@ -26,10 +26,10 @@ |
||
26 | 26 | * @since 22.0.0 |
27 | 27 | */ |
28 | 28 | interface INamedBackend { |
29 | - /** |
|
30 | - * Backend name to be shown in group management |
|
31 | - * @return string the name of the backend to be shown |
|
32 | - * @since 22.0.0 |
|
33 | - */ |
|
34 | - public function getBackendName(): string; |
|
29 | + /** |
|
30 | + * Backend name to be shown in group management |
|
31 | + * @return string the name of the backend to be shown |
|
32 | + * @since 22.0.0 |
|
33 | + */ |
|
34 | + public function getBackendName(): string; |
|
35 | 35 | } |
@@ -29,8 +29,8 @@ |
||
29 | 29 | * @since 14.0.0 |
30 | 30 | */ |
31 | 31 | interface IAddToGroupBackend { |
32 | - /** |
|
33 | - * @since 14.0.0 |
|
34 | - */ |
|
35 | - public function addToGroup(string $uid, string $gid): bool; |
|
32 | + /** |
|
33 | + * @since 14.0.0 |
|
34 | + */ |
|
35 | + public function addToGroup(string $uid, string $gid): bool; |
|
36 | 36 | } |
@@ -29,8 +29,8 @@ |
||
29 | 29 | * @since 14.0.0 |
30 | 30 | */ |
31 | 31 | interface ICountDisabledInGroup { |
32 | - /** |
|
33 | - * @since 14.0.0 |
|
34 | - */ |
|
35 | - public function countDisabledInGroup(string $gid): int; |
|
32 | + /** |
|
33 | + * @since 14.0.0 |
|
34 | + */ |
|
35 | + public function countDisabledInGroup(string $gid): int; |
|
36 | 36 | } |
@@ -30,12 +30,12 @@ |
||
30 | 30 | * |
31 | 31 | */ |
32 | 32 | class PropertyDoesNotExistException extends \Exception { |
33 | - /** |
|
34 | - * Constructor |
|
35 | - * @param string $msg the error message |
|
36 | - * @since 15.0.0 |
|
37 | - */ |
|
38 | - public function __construct($property) { |
|
39 | - parent::__construct('Property ' . $property . ' does not exist.'); |
|
40 | - } |
|
33 | + /** |
|
34 | + * Constructor |
|
35 | + * @param string $msg the error message |
|
36 | + * @since 15.0.0 |
|
37 | + */ |
|
38 | + public function __construct($property) { |
|
39 | + parent::__construct('Property ' . $property . ' does not exist.'); |
|
40 | + } |
|
41 | 41 | } |