Completed
Push — master ( 4965f0...ea2a7d )
by Morris
25:20 queued 12:14
created
lib/public/IGroup.php 1 patch
Indentation   +76 added lines, -76 removed lines patch added patch discarded remove patch
@@ -31,89 +31,89 @@
 block discarded – undo
31 31
  * @since 8.0.0
32 32
  */
33 33
 interface IGroup {
34
-	/**
35
-	 * @return string
36
-	 * @since 8.0.0
37
-	 */
38
-	public function getGID();
34
+    /**
35
+     * @return string
36
+     * @since 8.0.0
37
+     */
38
+    public function getGID();
39 39
 
40
-	/**
41
-	 * Returns the group display name
42
-	 *
43
-	 * @return string
44
-	 * @since 12.0.0
45
-	 */
46
-	public function getDisplayName();
40
+    /**
41
+     * Returns the group display name
42
+     *
43
+     * @return string
44
+     * @since 12.0.0
45
+     */
46
+    public function getDisplayName();
47 47
 
48
-	/**
49
-	 * get all users in the group
50
-	 *
51
-	 * @return \OCP\IUser[]
52
-	 * @since 8.0.0
53
-	 */
54
-	public function getUsers();
48
+    /**
49
+     * get all users in the group
50
+     *
51
+     * @return \OCP\IUser[]
52
+     * @since 8.0.0
53
+     */
54
+    public function getUsers();
55 55
 
56
-	/**
57
-	 * check if a user is in the group
58
-	 *
59
-	 * @param \OCP\IUser $user
60
-	 * @return bool
61
-	 * @since 8.0.0
62
-	 */
63
-	public function inGroup($user);
56
+    /**
57
+     * check if a user is in the group
58
+     *
59
+     * @param \OCP\IUser $user
60
+     * @return bool
61
+     * @since 8.0.0
62
+     */
63
+    public function inGroup($user);
64 64
 
65
-	/**
66
-	 * add a user to the group
67
-	 *
68
-	 * @param \OCP\IUser $user
69
-	 * @since 8.0.0
70
-	 */
71
-	public function addUser($user);
65
+    /**
66
+     * add a user to the group
67
+     *
68
+     * @param \OCP\IUser $user
69
+     * @since 8.0.0
70
+     */
71
+    public function addUser($user);
72 72
 
73
-	/**
74
-	 * remove a user from the group
75
-	 *
76
-	 * @param \OCP\IUser $user
77
-	 * @since 8.0.0
78
-	 */
79
-	public function removeUser($user);
73
+    /**
74
+     * remove a user from the group
75
+     *
76
+     * @param \OCP\IUser $user
77
+     * @since 8.0.0
78
+     */
79
+    public function removeUser($user);
80 80
 
81
-	/**
82
-	 * search for users in the group by userid
83
-	 *
84
-	 * @param string $search
85
-	 * @param int $limit
86
-	 * @param int $offset
87
-	 * @return \OCP\IUser[]
88
-	 * @since 8.0.0
89
-	 */
90
-	public function searchUsers($search, $limit = null, $offset = null);
81
+    /**
82
+     * search for users in the group by userid
83
+     *
84
+     * @param string $search
85
+     * @param int $limit
86
+     * @param int $offset
87
+     * @return \OCP\IUser[]
88
+     * @since 8.0.0
89
+     */
90
+    public function searchUsers($search, $limit = null, $offset = null);
91 91
 
92
-	/**
93
-	 * returns the number of users matching the search string
94
-	 *
95
-	 * @param string $search
96
-	 * @return int|bool
97
-	 * @since 8.0.0
98
-	 */
99
-	public function count($search = '');
92
+    /**
93
+     * returns the number of users matching the search string
94
+     *
95
+     * @param string $search
96
+     * @return int|bool
97
+     * @since 8.0.0
98
+     */
99
+    public function count($search = '');
100 100
 
101
-	/**
102
-	 * search for users in the group by displayname
103
-	 *
104
-	 * @param string $search
105
-	 * @param int $limit
106
-	 * @param int $offset
107
-	 * @return \OCP\IUser[]
108
-	 * @since 8.0.0
109
-	 */
110
-	public function searchDisplayName($search, $limit = null, $offset = null);
101
+    /**
102
+     * search for users in the group by displayname
103
+     *
104
+     * @param string $search
105
+     * @param int $limit
106
+     * @param int $offset
107
+     * @return \OCP\IUser[]
108
+     * @since 8.0.0
109
+     */
110
+    public function searchDisplayName($search, $limit = null, $offset = null);
111 111
 
112
-	/**
113
-	 * delete the group
114
-	 *
115
-	 * @return bool
116
-	 * @since 8.0.0
117
-	 */
118
-	public function delete();
112
+    /**
113
+     * delete the group
114
+     *
115
+     * @return bool
116
+     * @since 8.0.0
117
+     */
118
+    public function delete();
119 119
 }
Please login to merge, or discard this patch.