Completed
Pull Request — master (#10075)
by
unknown
27:10
created
lib/private/Authentication/Token/PublicKeyToken.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
 		if (is_array($scope)) {
192 192
 			parent::setScope(json_encode($scope));
193 193
 		} else {
194
-			parent::setScope((string)$scope);
194
+			parent::setScope((string) $scope);
195 195
 		}
196 196
 	}
197 197
 
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
 	}
235 235
 
236 236
 	public function setComment(string $comment = "") {
237
-		parent::setComment(substr($comment,0,250));
237
+		parent::setComment(substr($comment, 0, 250));
238 238
 	}
239 239
 
240 240
 }
Please login to merge, or discard this patch.
lib/private/Authentication/Token/DefaultToken.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
 		if (\is_array($scope)) {
179 179
 			parent::setScope(json_encode($scope));
180 180
 		} else {
181
-			parent::setScope((string)$scope);
181
+			parent::setScope((string) $scope);
182 182
 		}
183 183
 	}
184 184
 
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
 	}
222 222
 
223 223
 	public function setComment(string $comment = "") {
224
-		parent::setComment(substr($comment,0,250));
224
+		parent::setComment(substr($comment, 0, 250));
225 225
 	}
226 226
 
227 227
 }
Please login to merge, or discard this patch.