Passed
Push — master ( 38adda...5c6deb )
by Roeland
25:26 queued 01:09
created
lib/public/Activity/ISetting.php 1 patch
Indentation   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -29,48 +29,48 @@
 block discarded – undo
29 29
  */
30 30
 interface ISetting {
31 31
 
32
-	/**
33
-	 * @return string Lowercase a-z and underscore only identifier
34
-	 * @since 11.0.0
35
-	 */
36
-	public function getIdentifier();
32
+    /**
33
+     * @return string Lowercase a-z and underscore only identifier
34
+     * @since 11.0.0
35
+     */
36
+    public function getIdentifier();
37 37
 
38
-	/**
39
-	 * @return string A translated string
40
-	 * @since 11.0.0
41
-	 */
42
-	public function getName();
38
+    /**
39
+     * @return string A translated string
40
+     * @since 11.0.0
41
+     */
42
+    public function getName();
43 43
 
44
-	/**
45
-	 * @return int whether the filter should be rather on the top or bottom of
46
-	 * the admin section. The filters are arranged in ascending order of the
47
-	 * priority values. It is required to return a value between 0 and 100.
48
-	 * @since 11.0.0
49
-	 */
50
-	public function getPriority();
44
+    /**
45
+     * @return int whether the filter should be rather on the top or bottom of
46
+     * the admin section. The filters are arranged in ascending order of the
47
+     * priority values. It is required to return a value between 0 and 100.
48
+     * @since 11.0.0
49
+     */
50
+    public function getPriority();
51 51
 
52
-	/**
53
-	 * @return bool True when the option can be changed for the stream
54
-	 * @since 11.0.0
55
-	 */
56
-	public function canChangeStream();
52
+    /**
53
+     * @return bool True when the option can be changed for the stream
54
+     * @since 11.0.0
55
+     */
56
+    public function canChangeStream();
57 57
 
58
-	/**
59
-	 * @return bool True when the option can be changed for the stream
60
-	 * @since 11.0.0
61
-	 */
62
-	public function isDefaultEnabledStream();
58
+    /**
59
+     * @return bool True when the option can be changed for the stream
60
+     * @since 11.0.0
61
+     */
62
+    public function isDefaultEnabledStream();
63 63
 
64
-	/**
65
-	 * @return bool True when the option can be changed for the mail
66
-	 * @since 11.0.0
67
-	 */
68
-	public function canChangeMail();
64
+    /**
65
+     * @return bool True when the option can be changed for the mail
66
+     * @since 11.0.0
67
+     */
68
+    public function canChangeMail();
69 69
 
70
-	/**
71
-	 * @return bool True when the option can be changed for the stream
72
-	 * @since 11.0.0
73
-	 */
74
-	public function isDefaultEnabledMail();
70
+    /**
71
+     * @return bool True when the option can be changed for the stream
72
+     * @since 11.0.0
73
+     */
74
+    public function isDefaultEnabledMail();
75 75
 }
76 76
 
Please login to merge, or discard this patch.
lib/public/IMemcacheTTL.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -29,12 +29,12 @@
 block discarded – undo
29 29
  * @since 8.2.2
30 30
  */
31 31
 interface IMemcacheTTL extends IMemcache {
32
-	/**
33
-	 * Set the ttl for an existing value
34
-	 *
35
-	 * @param string $key
36
-	 * @param int $ttl time to live in seconds
37
-	 * @since 8.2.2
38
-	 */
39
-	public function setTTL($key, $ttl);
32
+    /**
33
+     * Set the ttl for an existing value
34
+     *
35
+     * @param string $key
36
+     * @param int $ttl time to live in seconds
37
+     * @since 8.2.2
38
+     */
39
+    public function setTTL($key, $ttl);
40 40
 }
Please login to merge, or discard this patch.
lib/public/IUserSession.php 1 patch
Indentation   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -40,44 +40,44 @@
 block discarded – undo
40 40
  * @since 6.0.0
41 41
  */
42 42
 interface IUserSession {
43
-	/**
44
-	 * Do a user login
45
-	 * @param string $user the username
46
-	 * @param string $password the password
47
-	 * @return bool true if successful
48
-	 * @since 6.0.0
49
-	 */
50
-	public function login($user, $password);
43
+    /**
44
+     * Do a user login
45
+     * @param string $user the username
46
+     * @param string $password the password
47
+     * @return bool true if successful
48
+     * @since 6.0.0
49
+     */
50
+    public function login($user, $password);
51 51
 
52
-	/**
53
-	 * Logs the user out including all the session data
54
-	 * Logout, destroys session
55
-	 * @return void
56
-	 * @since 6.0.0
57
-	 */
58
-	public function logout();
52
+    /**
53
+     * Logs the user out including all the session data
54
+     * Logout, destroys session
55
+     * @return void
56
+     * @since 6.0.0
57
+     */
58
+    public function logout();
59 59
 
60
-	/**
61
-	 * set the currently active user
62
-	 *
63
-	 * @param \OCP\IUser|null $user
64
-	 * @since 8.0.0
65
-	 */
66
-	public function setUser($user);
60
+    /**
61
+     * set the currently active user
62
+     *
63
+     * @param \OCP\IUser|null $user
64
+     * @since 8.0.0
65
+     */
66
+    public function setUser($user);
67 67
 
68
-	/**
69
-	 * get the current active user
70
-	 *
71
-	 * @return \OCP\IUser|null Current user, otherwise null
72
-	 * @since 8.0.0
73
-	 */
74
-	public function getUser();
68
+    /**
69
+     * get the current active user
70
+     *
71
+     * @return \OCP\IUser|null Current user, otherwise null
72
+     * @since 8.0.0
73
+     */
74
+    public function getUser();
75 75
 
76
-	/**
77
-	 * Checks whether the user is logged in
78
-	 *
79
-	 * @return bool if logged in
80
-	 * @since 8.0.0
81
-	 */
82
-	public function isLoggedIn();
76
+    /**
77
+     * Checks whether the user is logged in
78
+     *
79
+     * @return bool if logged in
80
+     * @since 8.0.0
81
+     */
82
+    public function isLoggedIn();
83 83
 }
Please login to merge, or discard this patch.
lib/public/IDateTimeZone.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 8.0.0
31 31
  */
32 32
 interface IDateTimeZone {
33
-	/**
34
-	 * @param bool|int $timestamp
35
-	 * @return \DateTimeZone
36
-	 * @since 8.0.0 - parameter $timestamp was added in 8.1.0
37
-	 */
38
-	public function getTimeZone($timestamp = false);
33
+    /**
34
+     * @param bool|int $timestamp
35
+     * @return \DateTimeZone
36
+     * @since 8.0.0 - parameter $timestamp was added in 8.1.0
37
+     */
38
+    public function getTimeZone($timestamp = false);
39 39
 }
Please login to merge, or discard this patch.
lib/public/Security/ICredentialsManager.php 1 patch
Indentation   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -30,43 +30,43 @@
 block discarded – undo
30 30
  */
31 31
 interface ICredentialsManager {
32 32
 
33
-	/**
34
-	 * Store a set of credentials
35
-	 *
36
-	 * @param string|null $userId Null for system-wide credentials
37
-	 * @param string $identifier
38
-	 * @param mixed $credentials
39
-	 * @since 8.2.0
40
-	 */
41
-	public function store($userId, $identifier, $credentials);
33
+    /**
34
+     * Store a set of credentials
35
+     *
36
+     * @param string|null $userId Null for system-wide credentials
37
+     * @param string $identifier
38
+     * @param mixed $credentials
39
+     * @since 8.2.0
40
+     */
41
+    public function store($userId, $identifier, $credentials);
42 42
 
43
-	/**
44
-	 * Retrieve a set of credentials
45
-	 *
46
-	 * @param string|null $userId Null for system-wide credentials
47
-	 * @param string $identifier
48
-	 * @return mixed
49
-	 * @since 8.2.0
50
-	 */
51
-	public function retrieve($userId, $identifier);
43
+    /**
44
+     * Retrieve a set of credentials
45
+     *
46
+     * @param string|null $userId Null for system-wide credentials
47
+     * @param string $identifier
48
+     * @return mixed
49
+     * @since 8.2.0
50
+     */
51
+    public function retrieve($userId, $identifier);
52 52
 
53
-	/**
54
-	 * Delete a set of credentials
55
-	 *
56
-	 * @param string|null $userId Null for system-wide credentials
57
-	 * @param string $identifier
58
-	 * @return int rows removed
59
-	 * @since 8.2.0
60
-	 */
61
-	public function delete($userId, $identifier);
53
+    /**
54
+     * Delete a set of credentials
55
+     *
56
+     * @param string|null $userId Null for system-wide credentials
57
+     * @param string $identifier
58
+     * @return int rows removed
59
+     * @since 8.2.0
60
+     */
61
+    public function delete($userId, $identifier);
62 62
 
63
-	/**
64
-	 * Erase all credentials stored for a user
65
-	 *
66
-	 * @param string $userId
67
-	 * @return int rows removed
68
-	 * @since 8.2.0
69
-	 */
70
-	public function erase($userId);
63
+    /**
64
+     * Erase all credentials stored for a user
65
+     *
66
+     * @param string $userId
67
+     * @return int rows removed
68
+     * @since 8.2.0
69
+     */
70
+    public function erase($userId);
71 71
 
72 72
 }
Please login to merge, or discard this patch.
lib/public/Security/IContentSecurityPolicyManager.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -30,22 +30,22 @@
 block discarded – undo
30 30
  * @since 9.0.0
31 31
  */
32 32
 interface IContentSecurityPolicyManager {
33
-	/**
34
-	 * Allows to inject something into the default content policy. This is for
35
-	 * example useful when you're injecting Javascript code into a view belonging
36
-	 * to another controller and cannot modify its Content-Security-Policy itself.
37
-	 * Note that the adjustment is only applied to applications that use AppFramework
38
-	 * controllers.
39
-	 *
40
-	 * To use this from your `app.php` use `\OC::$server->getContentSecurityPolicyManager()->addDefaultPolicy($policy)`,
41
-	 * $policy has to be of type `\OCP\AppFramework\Http\ContentSecurityPolicy`.
42
-	 *
43
-	 * WARNING: Using this API incorrectly may make the instance more insecure.
44
-	 * Do think twice before adding whitelisting resources. Please do also note
45
-	 * that it is not possible to use the `disallowXYZ` functions.
46
-	 *
47
-	 * @param EmptyContentSecurityPolicy $policy
48
-	 * @since 9.0.0
49
-	 */
50
-	public function addDefaultPolicy(EmptyContentSecurityPolicy $policy);
33
+    /**
34
+     * Allows to inject something into the default content policy. This is for
35
+     * example useful when you're injecting Javascript code into a view belonging
36
+     * to another controller and cannot modify its Content-Security-Policy itself.
37
+     * Note that the adjustment is only applied to applications that use AppFramework
38
+     * controllers.
39
+     *
40
+     * To use this from your `app.php` use `\OC::$server->getContentSecurityPolicyManager()->addDefaultPolicy($policy)`,
41
+     * $policy has to be of type `\OCP\AppFramework\Http\ContentSecurityPolicy`.
42
+     *
43
+     * WARNING: Using this API incorrectly may make the instance more insecure.
44
+     * Do think twice before adding whitelisting resources. Please do also note
45
+     * that it is not possible to use the `disallowXYZ` functions.
46
+     *
47
+     * @param EmptyContentSecurityPolicy $policy
48
+     * @since 9.0.0
49
+     */
50
+    public function addDefaultPolicy(EmptyContentSecurityPolicy $policy);
51 51
 }
Please login to merge, or discard this patch.
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.