Completed
Push — master ( abd971...9e9f3b )
by
unknown
64:29 queued 25:08
created
lib/public/Group/Events/GroupDeletedEvent.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -32,22 +32,22 @@
 block discarded – undo
32 32
  * @since 18.0.0
33 33
  */
34 34
 class GroupDeletedEvent extends Event {
35
-	/** @var IGroup */
36
-	private $group;
35
+    /** @var IGroup */
36
+    private $group;
37 37
 
38
-	/**
39
-	 * @since 18.0.0
40
-	 */
41
-	public function __construct(IGroup $group) {
42
-		parent::__construct();
43
-		$this->group = $group;
44
-	}
38
+    /**
39
+     * @since 18.0.0
40
+     */
41
+    public function __construct(IGroup $group) {
42
+        parent::__construct();
43
+        $this->group = $group;
44
+    }
45 45
 
46
-	/**
47
-	 * @return IGroup
48
-	 * @since 18.0.0
49
-	 */
50
-	public function getGroup(): IGroup {
51
-		return $this->group;
52
-	}
46
+    /**
47
+     * @return IGroup
48
+     * @since 18.0.0
49
+     */
50
+    public function getGroup(): IGroup {
51
+        return $this->group;
52
+    }
53 53
 }
Please login to merge, or discard this patch.
lib/public/Group/Events/BeforeGroupCreatedEvent.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -31,22 +31,22 @@
 block discarded – undo
31 31
  * @since 18.0.0
32 32
  */
33 33
 class BeforeGroupCreatedEvent extends Event {
34
-	/** @var string */
35
-	private $name;
34
+    /** @var string */
35
+    private $name;
36 36
 
37
-	/**
38
-	 * @since 18.0.0
39
-	 */
40
-	public function __construct(string $name) {
41
-		parent::__construct();
42
-		$this->name = $name;
43
-	}
37
+    /**
38
+     * @since 18.0.0
39
+     */
40
+    public function __construct(string $name) {
41
+        parent::__construct();
42
+        $this->name = $name;
43
+    }
44 44
 
45
-	/**
46
-	 * @return string
47
-	 * @since 18.0.0
48
-	 */
49
-	public function getName(): string {
50
-		return $this->name;
51
-	}
45
+    /**
46
+     * @return string
47
+     * @since 18.0.0
48
+     */
49
+    public function getName(): string {
50
+        return $this->name;
51
+    }
52 52
 }
Please login to merge, or discard this patch.
lib/public/Group/Backend/IGetDisplayNameBackend.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -30,10 +30,10 @@
 block discarded – undo
30 30
  * @since 17.0.0
31 31
  */
32 32
 interface IGetDisplayNameBackend {
33
-	/**
34
-	 * @param string $gid
35
-	 * @return string
36
-	 * @since 17.0.0
37
-	 */
38
-	public function getDisplayName(string $gid): string;
33
+    /**
34
+     * @param string $gid
35
+     * @return string
36
+     * @since 17.0.0
37
+     */
38
+    public function getDisplayName(string $gid): string;
39 39
 }
Please login to merge, or discard this patch.
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.