Completed
Pull Request — master (#4910)
by Julius
15:27 queued 24s
created
lib/public/Comments/CommentsEvent.php 1 patch
Indentation   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -32,41 +32,41 @@
 block discarded – undo
32 32
  */
33 33
 class CommentsEvent extends Event {
34 34
 
35
-	const EVENT_ADD        = 'OCP\Comments\ICommentsManager::addComment';
36
-	const EVENT_PRE_UPDATE = 'OCP\Comments\ICommentsManager::preUpdateComment';
37
-	const EVENT_UPDATE     = 'OCP\Comments\ICommentsManager::updateComment';
38
-	const EVENT_DELETE     = 'OCP\Comments\ICommentsManager::deleteComment';
35
+    const EVENT_ADD        = 'OCP\Comments\ICommentsManager::addComment';
36
+    const EVENT_PRE_UPDATE = 'OCP\Comments\ICommentsManager::preUpdateComment';
37
+    const EVENT_UPDATE     = 'OCP\Comments\ICommentsManager::updateComment';
38
+    const EVENT_DELETE     = 'OCP\Comments\ICommentsManager::deleteComment';
39 39
 
40
-	/** @var string */
41
-	protected $event;
42
-	/** @var IComment */
43
-	protected $comment;
40
+    /** @var string */
41
+    protected $event;
42
+    /** @var IComment */
43
+    protected $comment;
44 44
 
45
-	/**
46
-	 * DispatcherEvent constructor.
47
-	 *
48
-	 * @param string $event
49
-	 * @param IComment $comment
50
-	 * @since 9.0.0
51
-	 */
52
-	public function __construct($event, IComment $comment) {
53
-		$this->event = $event;
54
-		$this->comment = $comment;
55
-	}
45
+    /**
46
+     * DispatcherEvent constructor.
47
+     *
48
+     * @param string $event
49
+     * @param IComment $comment
50
+     * @since 9.0.0
51
+     */
52
+    public function __construct($event, IComment $comment) {
53
+        $this->event = $event;
54
+        $this->comment = $comment;
55
+    }
56 56
 
57
-	/**
58
-	 * @return string
59
-	 * @since 9.0.0
60
-	 */
61
-	public function getEvent() {
62
-		return $this->event;
63
-	}
57
+    /**
58
+     * @return string
59
+     * @since 9.0.0
60
+     */
61
+    public function getEvent() {
62
+        return $this->event;
63
+    }
64 64
 
65
-	/**
66
-	 * @return IComment
67
-	 * @since 9.0.0
68
-	 */
69
-	public function getComment() {
70
-		return $this->comment;
71
-	}
65
+    /**
66
+     * @return IComment
67
+     * @since 9.0.0
68
+     */
69
+    public function getComment() {
70
+        return $this->comment;
71
+    }
72 72
 }
Please login to merge, or discard this patch.
lib/public/Comments/ICommentsEventHandler.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -31,9 +31,9 @@
 block discarded – undo
31 31
  */
32 32
 interface ICommentsEventHandler {
33 33
 
34
-	/**
35
-	 * @param CommentsEvent $event
36
-	 * @since 11.0.0
37
-	 */
38
-	public function handle(CommentsEvent $event);
34
+    /**
35
+     * @param CommentsEvent $event
36
+     * @since 11.0.0
37
+     */
38
+    public function handle(CommentsEvent $event);
39 39
 }
Please login to merge, or discard this patch.
lib/public/Comments/IComment.php 1 patch
Indentation   +203 added lines, -203 removed lines patch added patch discarded remove patch
@@ -31,233 +31,233 @@
 block discarded – undo
31 31
  * @since 9.0.0
32 32
  */
33 33
 interface IComment {
34
-	const MAX_MESSAGE_LENGTH = 1000;
34
+    const MAX_MESSAGE_LENGTH = 1000;
35 35
 
36
-	/**
37
-	 * returns the ID of the comment
38
-	 *
39
-	 * It may return an empty string, if the comment was not stored.
40
-	 * It is expected that the concrete Comment implementation gives an ID
41
-	 * by itself (e.g. after saving).
42
-	 *
43
-	 * @return string
44
-	 * @since 9.0.0
45
-	 */
46
-	public function getId();
36
+    /**
37
+     * returns the ID of the comment
38
+     *
39
+     * It may return an empty string, if the comment was not stored.
40
+     * It is expected that the concrete Comment implementation gives an ID
41
+     * by itself (e.g. after saving).
42
+     *
43
+     * @return string
44
+     * @since 9.0.0
45
+     */
46
+    public function getId();
47 47
 
48
-	/**
49
-	 * sets the ID of the comment and returns itself
50
-	 *
51
-	 * It is only allowed to set the ID only, if the current id is an empty
52
-	 * string (which means it is not stored in a database, storage or whatever
53
-	 * the concrete implementation does), or vice versa. Changing a given ID is
54
-	 * not permitted and must result in an IllegalIDChangeException.
55
-	 *
56
-	 * @param string $id
57
-	 * @return IComment
58
-	 * @throws IllegalIDChangeException
59
-	 * @since 9.0.0
60
-	 */
61
-	public function setId($id);
48
+    /**
49
+     * sets the ID of the comment and returns itself
50
+     *
51
+     * It is only allowed to set the ID only, if the current id is an empty
52
+     * string (which means it is not stored in a database, storage or whatever
53
+     * the concrete implementation does), or vice versa. Changing a given ID is
54
+     * not permitted and must result in an IllegalIDChangeException.
55
+     *
56
+     * @param string $id
57
+     * @return IComment
58
+     * @throws IllegalIDChangeException
59
+     * @since 9.0.0
60
+     */
61
+    public function setId($id);
62 62
 
63
-	/**
64
-	 * returns the parent ID of the comment
65
-	 *
66
-	 * @return string
67
-	 * @since 9.0.0
68
-	 */
69
-	public function getParentId();
63
+    /**
64
+     * returns the parent ID of the comment
65
+     *
66
+     * @return string
67
+     * @since 9.0.0
68
+     */
69
+    public function getParentId();
70 70
 
71
-	/**
72
-	 * sets the parent ID and returns itself
73
-	 * @param string $parentId
74
-	 * @return IComment
75
-	 * @since 9.0.0
76
-	 */
77
-	public function setParentId($parentId);
71
+    /**
72
+     * sets the parent ID and returns itself
73
+     * @param string $parentId
74
+     * @return IComment
75
+     * @since 9.0.0
76
+     */
77
+    public function setParentId($parentId);
78 78
 
79
-	/**
80
-	 * returns the topmost parent ID of the comment
81
-	 *
82
-	 * @return string
83
-	 * @since 9.0.0
84
-	 */
85
-	public function getTopmostParentId();
79
+    /**
80
+     * returns the topmost parent ID of the comment
81
+     *
82
+     * @return string
83
+     * @since 9.0.0
84
+     */
85
+    public function getTopmostParentId();
86 86
 
87 87
 
88
-	/**
89
-	 * sets the topmost parent ID and returns itself
90
-	 *
91
-	 * @param string $id
92
-	 * @return IComment
93
-	 * @since 9.0.0
94
-	 */
95
-	public function setTopmostParentId($id);
88
+    /**
89
+     * sets the topmost parent ID and returns itself
90
+     *
91
+     * @param string $id
92
+     * @return IComment
93
+     * @since 9.0.0
94
+     */
95
+    public function setTopmostParentId($id);
96 96
 
97
-	/**
98
-	 * returns the number of children
99
-	 *
100
-	 * @return int
101
-	 * @since 9.0.0
102
-	 */
103
-	public function getChildrenCount();
97
+    /**
98
+     * returns the number of children
99
+     *
100
+     * @return int
101
+     * @since 9.0.0
102
+     */
103
+    public function getChildrenCount();
104 104
 
105
-	/**
106
-	 * sets the number of children
107
-	 *
108
-	 * @param int $count
109
-	 * @return IComment
110
-	 * @since 9.0.0
111
-	 */
112
-	public function setChildrenCount($count);
105
+    /**
106
+     * sets the number of children
107
+     *
108
+     * @param int $count
109
+     * @return IComment
110
+     * @since 9.0.0
111
+     */
112
+    public function setChildrenCount($count);
113 113
 
114
-	/**
115
-	 * returns the message of the comment
116
-	 *
117
-	 * @return string
118
-	 * @since 9.0.0
119
-	 */
120
-	public function getMessage();
114
+    /**
115
+     * returns the message of the comment
116
+     *
117
+     * @return string
118
+     * @since 9.0.0
119
+     */
120
+    public function getMessage();
121 121
 
122
-	/**
123
-	 * sets the message of the comment and returns itself
124
-	 *
125
-	 * When the given message length exceeds MAX_MESSAGE_LENGTH an
126
-	 * MessageTooLongException shall be thrown.
127
-	 *
128
-	 * @param string $message
129
-	 * @return IComment
130
-	 * @throws MessageTooLongException
131
-	 * @since 9.0.0
132
-	 */
133
-	public function setMessage($message);
122
+    /**
123
+     * sets the message of the comment and returns itself
124
+     *
125
+     * When the given message length exceeds MAX_MESSAGE_LENGTH an
126
+     * MessageTooLongException shall be thrown.
127
+     *
128
+     * @param string $message
129
+     * @return IComment
130
+     * @throws MessageTooLongException
131
+     * @since 9.0.0
132
+     */
133
+    public function setMessage($message);
134 134
 
135
-	/**
136
-	 * returns an array containing mentions that are included in the comment
137
-	 *
138
-	 * @return array each mention provides a 'type' and an 'id', see example below
139
-	 * @since 11.0.0
140
-	 *
141
-	 * The return array looks like:
142
-	 * [
143
-	 *   [
144
-	 *     'type' => 'user',
145
-	 *     'id' => 'citizen4'
146
-	 *   ],
147
-	 *   [
148
-	 *     'type' => 'group',
149
-	 *     'id' => 'media'
150
-	 *   ],
151
-	 *   …
152
-	 * ]
153
-	 *
154
-	 */
155
-	public function getMentions();
135
+    /**
136
+     * returns an array containing mentions that are included in the comment
137
+     *
138
+     * @return array each mention provides a 'type' and an 'id', see example below
139
+     * @since 11.0.0
140
+     *
141
+     * The return array looks like:
142
+     * [
143
+     *   [
144
+     *     'type' => 'user',
145
+     *     'id' => 'citizen4'
146
+     *   ],
147
+     *   [
148
+     *     'type' => 'group',
149
+     *     'id' => 'media'
150
+     *   ],
151
+     *   …
152
+     * ]
153
+     *
154
+     */
155
+    public function getMentions();
156 156
 
157
-	/**
158
-	 * returns the verb of the comment
159
-	 *
160
-	 * @return string
161
-	 * @since 9.0.0
162
-	 */
163
-	public function getVerb();
157
+    /**
158
+     * returns the verb of the comment
159
+     *
160
+     * @return string
161
+     * @since 9.0.0
162
+     */
163
+    public function getVerb();
164 164
 
165
-	/**
166
-	 * sets the verb of the comment, e.g. 'comment' or 'like'
167
-	 *
168
-	 * @param string $verb
169
-	 * @return IComment
170
-	 * @since 9.0.0
171
-	 */
172
-	public function setVerb($verb);
165
+    /**
166
+     * sets the verb of the comment, e.g. 'comment' or 'like'
167
+     *
168
+     * @param string $verb
169
+     * @return IComment
170
+     * @since 9.0.0
171
+     */
172
+    public function setVerb($verb);
173 173
 
174
-	/**
175
-	 * returns the actor type
176
-	 *
177
-	 * @return string
178
-	 * @since 9.0.0
179
-	 */
180
-	public function getActorType();
174
+    /**
175
+     * returns the actor type
176
+     *
177
+     * @return string
178
+     * @since 9.0.0
179
+     */
180
+    public function getActorType();
181 181
 
182
-	/**
183
-	 * returns the actor ID
184
-	 *
185
-	 * @return string
186
-	 * @since 9.0.0
187
-	 */
188
-	public function getActorId();
182
+    /**
183
+     * returns the actor ID
184
+     *
185
+     * @return string
186
+     * @since 9.0.0
187
+     */
188
+    public function getActorId();
189 189
 
190
-	/**
191
-	 * sets (overwrites) the actor type and id
192
-	 *
193
-	 * @param string $actorType e.g. 'users'
194
-	 * @param string $actorId e.g. 'zombie234'
195
-	 * @return IComment
196
-	 * @since 9.0.0
197
-	 */
198
-	public function setActor($actorType, $actorId);
190
+    /**
191
+     * sets (overwrites) the actor type and id
192
+     *
193
+     * @param string $actorType e.g. 'users'
194
+     * @param string $actorId e.g. 'zombie234'
195
+     * @return IComment
196
+     * @since 9.0.0
197
+     */
198
+    public function setActor($actorType, $actorId);
199 199
 
200
-	/**
201
-	 * returns the creation date of the comment.
202
-	 *
203
-	 * If not explicitly set, it shall default to the time of initialization.
204
-	 *
205
-	 * @return \DateTime
206
-	 * @since 9.0.0
207
-	 */
208
-	public function getCreationDateTime();
200
+    /**
201
+     * returns the creation date of the comment.
202
+     *
203
+     * If not explicitly set, it shall default to the time of initialization.
204
+     *
205
+     * @return \DateTime
206
+     * @since 9.0.0
207
+     */
208
+    public function getCreationDateTime();
209 209
 
210
-	/**
211
-	 * sets the creation date of the comment and returns itself
212
-	 *
213
-	 * @param \DateTime $dateTime
214
-	 * @return IComment
215
-	 * @since 9.0.0
216
-	 */
217
-	public function setCreationDateTime(\DateTime $dateTime);
210
+    /**
211
+     * sets the creation date of the comment and returns itself
212
+     *
213
+     * @param \DateTime $dateTime
214
+     * @return IComment
215
+     * @since 9.0.0
216
+     */
217
+    public function setCreationDateTime(\DateTime $dateTime);
218 218
 
219
-	/**
220
-	 * returns the date of the most recent child
221
-	 *
222
-	 * @return \DateTime
223
-	 * @since 9.0.0
224
-	 */
225
-	public function getLatestChildDateTime();
219
+    /**
220
+     * returns the date of the most recent child
221
+     *
222
+     * @return \DateTime
223
+     * @since 9.0.0
224
+     */
225
+    public function getLatestChildDateTime();
226 226
 
227
-	/**
228
-	 * sets the date of the most recent child
229
-	 *
230
-	 * @param \DateTime $dateTime
231
-	 * @return IComment
232
-	 * @since 9.0.0
233
-	 */
234
-	public function setLatestChildDateTime(\DateTime $dateTime);
227
+    /**
228
+     * sets the date of the most recent child
229
+     *
230
+     * @param \DateTime $dateTime
231
+     * @return IComment
232
+     * @since 9.0.0
233
+     */
234
+    public function setLatestChildDateTime(\DateTime $dateTime);
235 235
 
236
-	/**
237
-	 * returns the object type the comment is attached to
238
-	 *
239
-	 * @return string
240
-	 * @since 9.0.0
241
-	 */
242
-	public function getObjectType();
236
+    /**
237
+     * returns the object type the comment is attached to
238
+     *
239
+     * @return string
240
+     * @since 9.0.0
241
+     */
242
+    public function getObjectType();
243 243
 
244
-	/**
245
-	 * returns the object id the comment is attached to
246
-	 *
247
-	 * @return string
248
-	 * @since 9.0.0
249
-	 */
250
-	public function getObjectId();
244
+    /**
245
+     * returns the object id the comment is attached to
246
+     *
247
+     * @return string
248
+     * @since 9.0.0
249
+     */
250
+    public function getObjectId();
251 251
 
252
-	/**
253
-	 * sets (overwrites) the object of the comment
254
-	 *
255
-	 * @param string $objectType e.g. 'files'
256
-	 * @param string $objectId e.g. '16435'
257
-	 * @return IComment
258
-	 * @since 9.0.0
259
-	 */
260
-	public function setObject($objectType, $objectId);
252
+    /**
253
+     * sets (overwrites) the object of the comment
254
+     *
255
+     * @param string $objectType e.g. 'files'
256
+     * @param string $objectId e.g. '16435'
257
+     * @return IComment
258
+     * @since 9.0.0
259
+     */
260
+    public function setObject($objectType, $objectId);
261 261
 
262 262
 }
263 263
 
Please login to merge, or discard this patch.
lib/public/Comments/CommentsEntityEvent.php 2 patches
Indentation   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -32,46 +32,46 @@
 block discarded – undo
32 32
  */
33 33
 class CommentsEntityEvent extends Event {
34 34
 
35
-	const EVENT_ENTITY = 'OCP\Comments\ICommentsManager::registerEntity';
35
+    const EVENT_ENTITY = 'OCP\Comments\ICommentsManager::registerEntity';
36 36
 
37
-	/** @var string */
38
-	protected $event;
39
-	/** @var \Closure[] */
40
-	protected $collections;
37
+    /** @var string */
38
+    protected $event;
39
+    /** @var \Closure[] */
40
+    protected $collections;
41 41
 
42
-	/**
43
-	 * DispatcherEvent constructor.
44
-	 *
45
-	 * @param string $event
46
-	 * @since 9.1.0
47
-	 */
48
-	public function __construct($event) {
49
-		$this->event = $event;
50
-		$this->collections = [];
51
-	}
42
+    /**
43
+     * DispatcherEvent constructor.
44
+     *
45
+     * @param string $event
46
+     * @since 9.1.0
47
+     */
48
+    public function __construct($event) {
49
+        $this->event = $event;
50
+        $this->collections = [];
51
+    }
52 52
 
53
-	/**
54
-	 * @param string $name
55
-	 * @param \Closure $entityExistsFunction The closure should take one
56
-	 *                 argument, which is the id of the entity, that comments
57
-	 *                 should be handled for. The return should then be bool,
58
-	 *                 depending on whether comments are allowed (true) or not.
59
-	 * @throws \OutOfBoundsException when the entity name is already taken
60
-	 * @since 9.1.0
61
-	 */
62
-	public function addEntityCollection($name, \Closure $entityExistsFunction) {
63
-		if (isset($this->collections[$name])) {
64
-			throw new \OutOfBoundsException('Duplicate entity name "' . $name . '"');
65
-		}
53
+    /**
54
+     * @param string $name
55
+     * @param \Closure $entityExistsFunction The closure should take one
56
+     *                 argument, which is the id of the entity, that comments
57
+     *                 should be handled for. The return should then be bool,
58
+     *                 depending on whether comments are allowed (true) or not.
59
+     * @throws \OutOfBoundsException when the entity name is already taken
60
+     * @since 9.1.0
61
+     */
62
+    public function addEntityCollection($name, \Closure $entityExistsFunction) {
63
+        if (isset($this->collections[$name])) {
64
+            throw new \OutOfBoundsException('Duplicate entity name "' . $name . '"');
65
+        }
66 66
 
67
-		$this->collections[$name] = $entityExistsFunction;
68
-	}
67
+        $this->collections[$name] = $entityExistsFunction;
68
+    }
69 69
 
70
-	/**
71
-	 * @return \Closure[]
72
-	 * @since 9.1.0
73
-	 */
74
-	public function getEntityCollections() {
75
-		return $this->collections;
76
-	}
70
+    /**
71
+     * @return \Closure[]
72
+     * @since 9.1.0
73
+     */
74
+    public function getEntityCollections() {
75
+        return $this->collections;
76
+    }
77 77
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
 	 */
62 62
 	public function addEntityCollection($name, \Closure $entityExistsFunction) {
63 63
 		if (isset($this->collections[$name])) {
64
-			throw new \OutOfBoundsException('Duplicate entity name "' . $name . '"');
64
+			throw new \OutOfBoundsException('Duplicate entity name "'.$name.'"');
65 65
 		}
66 66
 
67 67
 		$this->collections[$name] = $entityExistsFunction;
Please login to merge, or discard this patch.
lib/public/Comments/ICommentsManagerFactory.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -36,19 +36,19 @@
 block discarded – undo
36 36
  */
37 37
 interface ICommentsManagerFactory {
38 38
 
39
-	/**
40
-	 * Constructor for the comments manager factory
41
-	 *
42
-	 * @param IServerContainer $serverContainer server container
43
-	 * @since 9.0.0
44
-	 */
45
-	public function __construct(IServerContainer $serverContainer);
39
+    /**
40
+     * Constructor for the comments manager factory
41
+     *
42
+     * @param IServerContainer $serverContainer server container
43
+     * @since 9.0.0
44
+     */
45
+    public function __construct(IServerContainer $serverContainer);
46 46
 
47
-	/**
48
-	 * creates and returns an instance of the ICommentsManager
49
-	 *
50
-	 * @return ICommentsManager
51
-	 * @since 9.0.0
52
-	 */
53
-	public function getManager();
47
+    /**
48
+     * creates and returns an instance of the ICommentsManager
49
+     *
50
+     * @return ICommentsManager
51
+     * @since 9.0.0
52
+     */
53
+    public function getManager();
54 54
 }
Please login to merge, or discard this patch.
lib/public/IAppConfig.php 1 patch
Indentation   +89 added lines, -89 removed lines patch added patch discarded remove patch
@@ -31,101 +31,101 @@
 block discarded – undo
31 31
  * @since 7.0.0
32 32
  */
33 33
 interface IAppConfig {
34
-	/**
35
-	 * check if a key is set in the appconfig
36
-	 * @param string $app
37
-	 * @param string $key
38
-	 * @return bool
39
-	 * @since 7.0.0
40
-	 */
41
-	public function hasKey($app, $key);
34
+    /**
35
+     * check if a key is set in the appconfig
36
+     * @param string $app
37
+     * @param string $key
38
+     * @return bool
39
+     * @since 7.0.0
40
+     */
41
+    public function hasKey($app, $key);
42 42
 
43
-	/**
44
-	 * Gets the config value
45
-	 * @param string $app app
46
-	 * @param string $key key
47
-	 * @param string $default = null, default value if the key does not exist
48
-	 * @return string the value or $default
49
-	 * @deprecated 8.0.0 use method getAppValue of \OCP\IConfig
50
-	 *
51
-	 * This function gets a value from the appconfig table. If the key does
52
-	 * not exist the default value will be returned
53
-	 * @since 7.0.0
54
-	 */
55
-	public function getValue($app, $key, $default = null);
43
+    /**
44
+     * Gets the config value
45
+     * @param string $app app
46
+     * @param string $key key
47
+     * @param string $default = null, default value if the key does not exist
48
+     * @return string the value or $default
49
+     * @deprecated 8.0.0 use method getAppValue of \OCP\IConfig
50
+     *
51
+     * This function gets a value from the appconfig table. If the key does
52
+     * not exist the default value will be returned
53
+     * @since 7.0.0
54
+     */
55
+    public function getValue($app, $key, $default = null);
56 56
 
57
-	/**
58
-	 * Deletes a key
59
-	 * @param string $app app
60
-	 * @param string $key key
61
-	 * @return bool
62
-	 * @deprecated 8.0.0 use method deleteAppValue of \OCP\IConfig
63
-	 * @since 7.0.0
64
-	 */
65
-	public function deleteKey($app, $key);
57
+    /**
58
+     * Deletes a key
59
+     * @param string $app app
60
+     * @param string $key key
61
+     * @return bool
62
+     * @deprecated 8.0.0 use method deleteAppValue of \OCP\IConfig
63
+     * @since 7.0.0
64
+     */
65
+    public function deleteKey($app, $key);
66 66
 
67
-	/**
68
-	 * Get the available keys for an app
69
-	 * @param string $app the app we are looking for
70
-	 * @return array an array of key names
71
-	 * @deprecated 8.0.0 use method getAppKeys of \OCP\IConfig
72
-	 *
73
-	 * This function gets all keys of an app. Please note that the values are
74
-	 * not returned.
75
-	 * @since 7.0.0
76
-	 */
77
-	public function getKeys($app);
67
+    /**
68
+     * Get the available keys for an app
69
+     * @param string $app the app we are looking for
70
+     * @return array an array of key names
71
+     * @deprecated 8.0.0 use method getAppKeys of \OCP\IConfig
72
+     *
73
+     * This function gets all keys of an app. Please note that the values are
74
+     * not returned.
75
+     * @since 7.0.0
76
+     */
77
+    public function getKeys($app);
78 78
 
79
-	/**
80
-	 * get multiply values, either the app or key can be used as wildcard by setting it to false
81
-	 *
82
-	 * @param string|false $key
83
-	 * @param string|false $app
84
-	 * @return array|false
85
-	 * @since 7.0.0
86
-	 */
87
-	public function getValues($app, $key);
79
+    /**
80
+     * get multiply values, either the app or key can be used as wildcard by setting it to false
81
+     *
82
+     * @param string|false $key
83
+     * @param string|false $app
84
+     * @return array|false
85
+     * @since 7.0.0
86
+     */
87
+    public function getValues($app, $key);
88 88
 
89
-	/**
90
-	 * get all values of the app or and filters out sensitive data
91
-	 *
92
-	 * @param string $app
93
-	 * @return array
94
-	 * @since 12.0.0
95
-	 */
96
-	public function getFilteredValues($app);
89
+    /**
90
+     * get all values of the app or and filters out sensitive data
91
+     *
92
+     * @param string $app
93
+     * @return array
94
+     * @since 12.0.0
95
+     */
96
+    public function getFilteredValues($app);
97 97
 
98
-	/**
99
-	 * sets a value in the appconfig
100
-	 * @param string $app app
101
-	 * @param string $key key
102
-	 * @param string|float|int $value value
103
-	 * @deprecated 8.0.0 use method setAppValue of \OCP\IConfig
104
-	 *
105
-	 * Sets a value. If the key did not exist before it will be created.
106
-	 * @return void
107
-	 * @since 7.0.0
108
-	 */
109
-	public function setValue($app, $key, $value);
98
+    /**
99
+     * sets a value in the appconfig
100
+     * @param string $app app
101
+     * @param string $key key
102
+     * @param string|float|int $value value
103
+     * @deprecated 8.0.0 use method setAppValue of \OCP\IConfig
104
+     *
105
+     * Sets a value. If the key did not exist before it will be created.
106
+     * @return void
107
+     * @since 7.0.0
108
+     */
109
+    public function setValue($app, $key, $value);
110 110
 
111
-	/**
112
-	 * Get all apps using the config
113
-	 * @return array an array of app ids
114
-	 *
115
-	 * This function returns a list of all apps that have at least one
116
-	 * entry in the appconfig table.
117
-	 * @since 7.0.0
118
-	 */
119
-	public function getApps();
111
+    /**
112
+     * Get all apps using the config
113
+     * @return array an array of app ids
114
+     *
115
+     * This function returns a list of all apps that have at least one
116
+     * entry in the appconfig table.
117
+     * @since 7.0.0
118
+     */
119
+    public function getApps();
120 120
 
121
-	/**
122
-	 * Remove app from appconfig
123
-	 * @param string $app app
124
-	 * @return bool
125
-	 * @deprecated 8.0.0 use method deleteAppValue of \OCP\IConfig
126
-	 *
127
-	 * Removes all keys in appconfig belonging to the app.
128
-	 * @since 7.0.0
129
-	 */
130
-	public function deleteApp($app);
121
+    /**
122
+     * Remove app from appconfig
123
+     * @param string $app app
124
+     * @return bool
125
+     * @deprecated 8.0.0 use method deleteAppValue of \OCP\IConfig
126
+     *
127
+     * Removes all keys in appconfig belonging to the app.
128
+     * @since 7.0.0
129
+     */
130
+    public function deleteApp($app);
131 131
 }
Please login to merge, or discard this patch.
lib/public/ICertificate.php 1 patch
Indentation   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -30,51 +30,51 @@
 block discarded – undo
30 30
  * @since 8.0.0
31 31
  */
32 32
 interface ICertificate {
33
-	/**
34
-	 * @return string
35
-	 * @since 8.0.0
36
-	 */
37
-	public function getName();
33
+    /**
34
+     * @return string
35
+     * @since 8.0.0
36
+     */
37
+    public function getName();
38 38
 
39
-	/**
40
-	 * @return string
41
-	 * @since 8.0.0
42
-	 */
43
-	public function getCommonName();
39
+    /**
40
+     * @return string
41
+     * @since 8.0.0
42
+     */
43
+    public function getCommonName();
44 44
 
45
-	/**
46
-	 * @return string
47
-	 * @since 8.0.0
48
-	 */
49
-	public function getOrganization();
45
+    /**
46
+     * @return string
47
+     * @since 8.0.0
48
+     */
49
+    public function getOrganization();
50 50
 
51
-	/**
52
-	 * @return \DateTime
53
-	 * @since 8.0.0
54
-	 */
55
-	public function getIssueDate();
51
+    /**
52
+     * @return \DateTime
53
+     * @since 8.0.0
54
+     */
55
+    public function getIssueDate();
56 56
 
57
-	/**
58
-	 * @return \DateTime
59
-	 * @since 8.0.0
60
-	 */
61
-	public function getExpireDate();
57
+    /**
58
+     * @return \DateTime
59
+     * @since 8.0.0
60
+     */
61
+    public function getExpireDate();
62 62
 
63
-	/**
64
-	 * @return bool
65
-	 * @since 8.0.0
66
-	 */
67
-	public function isExpired();
63
+    /**
64
+     * @return bool
65
+     * @since 8.0.0
66
+     */
67
+    public function isExpired();
68 68
 
69
-	/**
70
-	 * @return string
71
-	 * @since 8.0.0
72
-	 */
73
-	public function getIssuerName();
69
+    /**
70
+     * @return string
71
+     * @since 8.0.0
72
+     */
73
+    public function getIssuerName();
74 74
 
75
-	/**
76
-	 * @return string
77
-	 * @since 8.0.0
78
-	 */
79
-	public function getIssuerOrganization();
75
+    /**
76
+     * @return string
77
+     * @since 8.0.0
78
+     */
79
+    public function getIssuerOrganization();
80 80
 }
Please login to merge, or discard this patch.
lib/public/App.php 2 patches
Indentation   +101 added lines, -101 removed lines patch added patch discarded remove patch
@@ -43,112 +43,112 @@
 block discarded – undo
43 43
  */
44 44
 class App {
45 45
 
46
-	/**
47
-	 * Adds an entry to the navigation
48
-	 *
49
-	 * This function adds a new entry to the navigation visible to users. $data
50
-	 * is an associative array.
51
-	 * The following keys are required:
52
-	 *   - id: unique id for this entry ('addressbook_index')
53
-	 *   - href: link to the page
54
-	 *   - name: Human readable name ('Addressbook')
55
-	 *
56
-	 * The following keys are optional:
57
-	 *   - icon: path to the icon of the app
58
-	 *   - order: integer, that influences the position of your application in
59
-	 *     the navigation. Lower values come first.
60
-	 *
61
-	 * @param array $data containing the data
62
-	 * @return boolean
63
-	 *
64
-	 * @deprecated 8.1.0 Use \OC::$server->getNavigationManager()->add() instead to
65
-	 * register a closure, this helps to speed up all requests against ownCloud
66
-	 * @since 4.0.0
67
-	 */
68
-	public static function addNavigationEntry($data) {
69
-		\OC::$server->getNavigationManager()->add($data);
70
-		return true;
71
-	}
46
+    /**
47
+     * Adds an entry to the navigation
48
+     *
49
+     * This function adds a new entry to the navigation visible to users. $data
50
+     * is an associative array.
51
+     * The following keys are required:
52
+     *   - id: unique id for this entry ('addressbook_index')
53
+     *   - href: link to the page
54
+     *   - name: Human readable name ('Addressbook')
55
+     *
56
+     * The following keys are optional:
57
+     *   - icon: path to the icon of the app
58
+     *   - order: integer, that influences the position of your application in
59
+     *     the navigation. Lower values come first.
60
+     *
61
+     * @param array $data containing the data
62
+     * @return boolean
63
+     *
64
+     * @deprecated 8.1.0 Use \OC::$server->getNavigationManager()->add() instead to
65
+     * register a closure, this helps to speed up all requests against ownCloud
66
+     * @since 4.0.0
67
+     */
68
+    public static function addNavigationEntry($data) {
69
+        \OC::$server->getNavigationManager()->add($data);
70
+        return true;
71
+    }
72 72
 
73
-	/**
74
-	 * Marks a navigation entry as active
75
-	 * @param string $id id of the entry
76
-	 * @return boolean
77
-	 *
78
-	 * This function sets a navigation entry as active and removes the 'active'
79
-	 * property from all other entries. The templates can use this for
80
-	 * highlighting the current position of the user.
81
-	 *
82
-	 * @deprecated 8.1.0 Use \OC::$server->getNavigationManager()->setActiveEntry() instead
83
-	 * @since 4.0.0
84
-	 */
85
-	public static function setActiveNavigationEntry( $id ) {
86
-		\OC::$server->getNavigationManager()->setActiveEntry($id);
87
-		return true;
88
-	}
73
+    /**
74
+     * Marks a navigation entry as active
75
+     * @param string $id id of the entry
76
+     * @return boolean
77
+     *
78
+     * This function sets a navigation entry as active and removes the 'active'
79
+     * property from all other entries. The templates can use this for
80
+     * highlighting the current position of the user.
81
+     *
82
+     * @deprecated 8.1.0 Use \OC::$server->getNavigationManager()->setActiveEntry() instead
83
+     * @since 4.0.0
84
+     */
85
+    public static function setActiveNavigationEntry( $id ) {
86
+        \OC::$server->getNavigationManager()->setActiveEntry($id);
87
+        return true;
88
+    }
89 89
 
90
-	/**
91
-	 * Register a Configuration Screen that should appear in the personal settings section.
92
-	 * @param string $app appid
93
-	 * @param string $page page to be included
94
-	 * @return void
95
-	 * @since 4.0.0
96
-	*/
97
-	public static function registerPersonal( $app, $page ) {
98
-		\OC_App::registerPersonal( $app, $page );
99
-	}
90
+    /**
91
+     * Register a Configuration Screen that should appear in the personal settings section.
92
+     * @param string $app appid
93
+     * @param string $page page to be included
94
+     * @return void
95
+     * @since 4.0.0
96
+     */
97
+    public static function registerPersonal( $app, $page ) {
98
+        \OC_App::registerPersonal( $app, $page );
99
+    }
100 100
 
101
-	/**
102
-	 * Register a Configuration Screen that should appear in the Admin section.
103
-	 * @param string $app string appid
104
-	 * @param string $page string page to be included
105
-	 * @return void
106
-	 * @since 4.0.0
107
-	 */
108
-	public static function registerAdmin( $app, $page ) {
109
-		\OC_App::registerAdmin( $app, $page );
110
-	}
101
+    /**
102
+     * Register a Configuration Screen that should appear in the Admin section.
103
+     * @param string $app string appid
104
+     * @param string $page string page to be included
105
+     * @return void
106
+     * @since 4.0.0
107
+     */
108
+    public static function registerAdmin( $app, $page ) {
109
+        \OC_App::registerAdmin( $app, $page );
110
+    }
111 111
 
112
-	/**
113
-	 * Read app metadata from the info.xml file
114
-	 * @param string $app id of the app or the path of the info.xml file
115
-	 * @param boolean $path (optional)
116
-	 * @return array|null
117
-	 * @since 4.0.0
118
-	*/
119
-	public static function getAppInfo( $app, $path=false ) {
120
-		return \OC_App::getAppInfo( $app, $path);
121
-	}
112
+    /**
113
+     * Read app metadata from the info.xml file
114
+     * @param string $app id of the app or the path of the info.xml file
115
+     * @param boolean $path (optional)
116
+     * @return array|null
117
+     * @since 4.0.0
118
+     */
119
+    public static function getAppInfo( $app, $path=false ) {
120
+        return \OC_App::getAppInfo( $app, $path);
121
+    }
122 122
 
123
-	/**
124
-	 * checks whether or not an app is enabled
125
-	 * @param string $app
126
-	 * @return boolean
127
-	 *
128
-	 * This function checks whether or not an app is enabled.
129
-	 * @since 4.0.0
130
-	 */
131
-	public static function isEnabled( $app ) {
132
-		return \OC_App::isEnabled( $app );
133
-	}
123
+    /**
124
+     * checks whether or not an app is enabled
125
+     * @param string $app
126
+     * @return boolean
127
+     *
128
+     * This function checks whether or not an app is enabled.
129
+     * @since 4.0.0
130
+     */
131
+    public static function isEnabled( $app ) {
132
+        return \OC_App::isEnabled( $app );
133
+    }
134 134
 
135
-	/**
136
-	 * Check if the app is enabled, redirects to home if not
137
-	 * @param string $app
138
-	 * @return void
139
-	 * @since 4.0.0
140
-	 * @deprecated 9.0.0 ownCloud core will handle disabled apps and redirects to valid URLs
141
-	*/
142
-	public static function checkAppEnabled( $app ) {
143
-	}
135
+    /**
136
+     * Check if the app is enabled, redirects to home if not
137
+     * @param string $app
138
+     * @return void
139
+     * @since 4.0.0
140
+     * @deprecated 9.0.0 ownCloud core will handle disabled apps and redirects to valid URLs
141
+     */
142
+    public static function checkAppEnabled( $app ) {
143
+    }
144 144
 
145
-	/**
146
-	 * Get the last version of the app from appinfo/info.xml
147
-	 * @param string $app
148
-	 * @return string
149
-	 * @since 4.0.0
150
-	 */
151
-	public static function getAppVersion( $app ) {
152
-		return \OC_App::getAppVersion( $app );
153
-	}
145
+    /**
146
+     * Get the last version of the app from appinfo/info.xml
147
+     * @param string $app
148
+     * @return string
149
+     * @since 4.0.0
150
+     */
151
+    public static function getAppVersion( $app ) {
152
+        return \OC_App::getAppVersion( $app );
153
+    }
154 154
 }
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 	 * @deprecated 8.1.0 Use \OC::$server->getNavigationManager()->setActiveEntry() instead
83 83
 	 * @since 4.0.0
84 84
 	 */
85
-	public static function setActiveNavigationEntry( $id ) {
85
+	public static function setActiveNavigationEntry($id) {
86 86
 		\OC::$server->getNavigationManager()->setActiveEntry($id);
87 87
 		return true;
88 88
 	}
@@ -94,8 +94,8 @@  discard block
 block discarded – undo
94 94
 	 * @return void
95 95
 	 * @since 4.0.0
96 96
 	*/
97
-	public static function registerPersonal( $app, $page ) {
98
-		\OC_App::registerPersonal( $app, $page );
97
+	public static function registerPersonal($app, $page) {
98
+		\OC_App::registerPersonal($app, $page);
99 99
 	}
100 100
 
101 101
 	/**
@@ -105,8 +105,8 @@  discard block
 block discarded – undo
105 105
 	 * @return void
106 106
 	 * @since 4.0.0
107 107
 	 */
108
-	public static function registerAdmin( $app, $page ) {
109
-		\OC_App::registerAdmin( $app, $page );
108
+	public static function registerAdmin($app, $page) {
109
+		\OC_App::registerAdmin($app, $page);
110 110
 	}
111 111
 
112 112
 	/**
@@ -116,8 +116,8 @@  discard block
 block discarded – undo
116 116
 	 * @return array|null
117 117
 	 * @since 4.0.0
118 118
 	*/
119
-	public static function getAppInfo( $app, $path=false ) {
120
-		return \OC_App::getAppInfo( $app, $path);
119
+	public static function getAppInfo($app, $path = false) {
120
+		return \OC_App::getAppInfo($app, $path);
121 121
 	}
122 122
 
123 123
 	/**
@@ -128,8 +128,8 @@  discard block
 block discarded – undo
128 128
 	 * This function checks whether or not an app is enabled.
129 129
 	 * @since 4.0.0
130 130
 	 */
131
-	public static function isEnabled( $app ) {
132
-		return \OC_App::isEnabled( $app );
131
+	public static function isEnabled($app) {
132
+		return \OC_App::isEnabled($app);
133 133
 	}
134 134
 
135 135
 	/**
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
 	 * @since 4.0.0
140 140
 	 * @deprecated 9.0.0 ownCloud core will handle disabled apps and redirects to valid URLs
141 141
 	*/
142
-	public static function checkAppEnabled( $app ) {
142
+	public static function checkAppEnabled($app) {
143 143
 	}
144 144
 
145 145
 	/**
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
 	 * @return string
149 149
 	 * @since 4.0.0
150 150
 	 */
151
-	public static function getAppVersion( $app ) {
152
-		return \OC_App::getAppVersion( $app );
151
+	public static function getAppVersion($app) {
152
+		return \OC_App::getAppVersion($app);
153 153
 	}
154 154
 }
Please login to merge, or discard this patch.
lib/public/Notification/IAction.php 1 patch
Indentation   +64 added lines, -64 removed lines patch added patch discarded remove patch
@@ -29,78 +29,78 @@
 block discarded – undo
29 29
  * @since 9.0.0
30 30
  */
31 31
 interface IAction {
32
-	/**
33
-	 * @param string $label
34
-	 * @return $this
35
-	 * @throws \InvalidArgumentException if the label is invalid
36
-	 * @since 9.0.0
37
-	 */
38
-	public function setLabel($label);
32
+    /**
33
+     * @param string $label
34
+     * @return $this
35
+     * @throws \InvalidArgumentException if the label is invalid
36
+     * @since 9.0.0
37
+     */
38
+    public function setLabel($label);
39 39
 
40
-	/**
41
-	 * @return string
42
-	 * @since 9.0.0
43
-	 */
44
-	public function getLabel();
40
+    /**
41
+     * @return string
42
+     * @since 9.0.0
43
+     */
44
+    public function getLabel();
45 45
 
46
-	/**
47
-	 * @param string $label
48
-	 * @return $this
49
-	 * @throws \InvalidArgumentException if the label is invalid
50
-	 * @since 9.0.0
51
-	 */
52
-	public function setParsedLabel($label);
46
+    /**
47
+     * @param string $label
48
+     * @return $this
49
+     * @throws \InvalidArgumentException if the label is invalid
50
+     * @since 9.0.0
51
+     */
52
+    public function setParsedLabel($label);
53 53
 
54
-	/**
55
-	 * @return string
56
-	 * @since 9.0.0
57
-	 */
58
-	public function getParsedLabel();
54
+    /**
55
+     * @return string
56
+     * @since 9.0.0
57
+     */
58
+    public function getParsedLabel();
59 59
 
60
-	/**
61
-	 * @param $primary bool
62
-	 * @return $this
63
-	 * @throws \InvalidArgumentException if $primary is invalid
64
-	 * @since 9.0.0
65
-	 */
66
-	public function setPrimary($primary);
60
+    /**
61
+     * @param $primary bool
62
+     * @return $this
63
+     * @throws \InvalidArgumentException if $primary is invalid
64
+     * @since 9.0.0
65
+     */
66
+    public function setPrimary($primary);
67 67
 
68
-	/**
69
-	 * @return bool
70
-	 * @since 9.0.0
71
-	 */
72
-	public function isPrimary();
68
+    /**
69
+     * @return bool
70
+     * @since 9.0.0
71
+     */
72
+    public function isPrimary();
73 73
 
74
-	/**
75
-	 * @param string $link
76
-	 * @param string $requestType
77
-	 * @return $this
78
-	 * @throws \InvalidArgumentException if the link is invalid
79
-	 * @since 9.0.0
80
-	 */
81
-	public function setLink($link, $requestType);
74
+    /**
75
+     * @param string $link
76
+     * @param string $requestType
77
+     * @return $this
78
+     * @throws \InvalidArgumentException if the link is invalid
79
+     * @since 9.0.0
80
+     */
81
+    public function setLink($link, $requestType);
82 82
 
83
-	/**
84
-	 * @return string
85
-	 * @since 9.0.0
86
-	 */
87
-	public function getLink();
83
+    /**
84
+     * @return string
85
+     * @since 9.0.0
86
+     */
87
+    public function getLink();
88 88
 
89
-	/**
90
-	 * @return string
91
-	 * @since 9.0.0
92
-	 */
93
-	public function getRequestType();
89
+    /**
90
+     * @return string
91
+     * @since 9.0.0
92
+     */
93
+    public function getRequestType();
94 94
 
95
-	/**
96
-	 * @return bool
97
-	 * @since 9.0.0
98
-	 */
99
-	public function isValid();
95
+    /**
96
+     * @return bool
97
+     * @since 9.0.0
98
+     */
99
+    public function isValid();
100 100
 
101
-	/**
102
-	 * @return bool
103
-	 * @since 9.0.0
104
-	 */
105
-	public function isValidParsed();
101
+    /**
102
+     * @return bool
103
+     * @since 9.0.0
104
+     */
105
+    public function isValidParsed();
106 106
 }
Please login to merge, or discard this patch.