Completed
Push — master ( b5b320...7ff123 )
by
unknown
27:38
created
lib/public/Group/Backend/IDeleteGroupBackend.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
lib/public/Group/Backend/IRemoveFromGroupBackend.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
lib/public/Group/Backend/ICountUsersBackend.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
lib/public/Group/Backend/ISetDisplayNameBackend.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -29,11 +29,11 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
lib/public/Group/Backend/IIsAdminBackend.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
lib/public/Group/Backend/INamedBackend.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
lib/public/Group/Backend/IAddToGroupBackend.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
lib/public/Group/Backend/ICountDisabledInGroup.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
lib/public/Accounts/PropertyDoesNotExistException.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -30,12 +30,12 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.