Completed
Push — master ( 92e282...5f81a7 )
by John
25:44 queued 14s
created
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.
lib/public/Talk/IConversation.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -29,19 +29,19 @@
 block discarded – undo
29 29
  * @since 24.0.0
30 30
  */
31 31
 interface IConversation {
32
-	/**
33
-	 * Get the unique token that identifies this conversation
34
-	 *
35
-	 * @return string
36
-	 * @since 26.0.0
37
-	 */
38
-	public function getId(): string;
32
+    /**
33
+     * Get the unique token that identifies this conversation
34
+     *
35
+     * @return string
36
+     * @since 26.0.0
37
+     */
38
+    public function getId(): string;
39 39
 
40
-	/**
41
-	 * Get the absolute URL to this conversation
42
-	 *
43
-	 * @return string
44
-	 * @since 24.0.0
45
-	 */
46
-	public function getAbsoluteUrl(): string;
40
+    /**
41
+     * Get the absolute URL to this conversation
42
+     *
43
+     * @return string
44
+     * @since 24.0.0
45
+     */
46
+    public function getAbsoluteUrl(): string;
47 47
 }
Please login to merge, or discard this patch.
lib/public/Talk/IConversationOptions.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -29,21 +29,21 @@
 block discarded – undo
29 29
  * @since 24.0.0
30 30
  */
31 31
 interface IConversationOptions {
32
-	/**
33
-	 * Will the conversation be public?
34
-	 *
35
-	 * @return bool
36
-	 * @since 24.0.0
37
-	 */
38
-	public function isPublic(): bool;
32
+    /**
33
+     * Will the conversation be public?
34
+     *
35
+     * @return bool
36
+     * @since 24.0.0
37
+     */
38
+    public function isPublic(): bool;
39 39
 
40
-	/**
41
-	 * Make the new conversation public
42
-	 *
43
-	 * @param bool $isPublic
44
-	 *
45
-	 * @return $this
46
-	 * @since 24.0.0
47
-	 */
48
-	public function setPublic(bool $isPublic = true): self;
40
+    /**
41
+     * Make the new conversation public
42
+     *
43
+     * @param bool $isPublic
44
+     *
45
+     * @return $this
46
+     * @since 24.0.0
47
+     */
48
+    public function setPublic(bool $isPublic = true): self;
49 49
 }
Please login to merge, or discard this patch.
lib/public/LDAP/ILDAPProviderFactory.php 1 patch
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -36,27 +36,27 @@
 block discarded – undo
36 36
  * @since 11.0.0
37 37
  */
38 38
 interface ILDAPProviderFactory {
39
-	/**
40
-	 * Constructor for the LDAP provider factory
41
-	 *
42
-	 * @param IServerContainer $serverContainer server container
43
-	 * @since 11.0.0
44
-	 */
45
-	public function __construct(IServerContainer $serverContainer);
39
+    /**
40
+     * Constructor for the LDAP provider factory
41
+     *
42
+     * @param IServerContainer $serverContainer server container
43
+     * @since 11.0.0
44
+     */
45
+    public function __construct(IServerContainer $serverContainer);
46 46
 
47
-	/**
48
-	 * creates and returns an instance of the ILDAPProvider
49
-	 *
50
-	 * @return ILDAPProvider
51
-	 * @since 11.0.0
52
-	 */
53
-	public function getLDAPProvider();
47
+    /**
48
+     * creates and returns an instance of the ILDAPProvider
49
+     *
50
+     * @return ILDAPProvider
51
+     * @since 11.0.0
52
+     */
53
+    public function getLDAPProvider();
54 54
 
55
-	/**
56
-	 * Check if an ldap provider is available
57
-	 *
58
-	 * @return bool
59
-	 * @since 21.0.0
60
-	 */
61
-	public function isAvailable(): bool;
55
+    /**
56
+     * Check if an ldap provider is available
57
+     *
58
+     * @return bool
59
+     * @since 21.0.0
60
+     */
61
+    public function isAvailable(): bool;
62 62
 }
Please login to merge, or discard this patch.