Passed
Push — master ( 27f492...c31d31 )
by Roeland
16:19
created
lib/private/Files/Stream/Encryption.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -196,9 +196,9 @@  discard block
 block discarded – undo
196 196
 		try {
197 197
 			stream_wrapper_register($protocol, $class);
198 198
 			if (self::isDirectoryHandle($source)) {
199
-				$wrapped = opendir($protocol . '://', $context);
199
+				$wrapped = opendir($protocol.'://', $context);
200 200
 			} else {
201
-				$wrapped = fopen($protocol . '://', $mode, false, $context);
201
+				$wrapped = fopen($protocol.'://', $mode, false, $context);
202 202
 			}
203 203
 		} catch (\BadMethodCallException $e) {
204 204
 			stream_wrapper_unregister($protocol);
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
 			if (array_key_exists($property, $context)) {
223 223
 				$this->{$property} = $context[$property];
224 224
 			} else {
225
-				throw new \BadMethodCallException('Invalid context, "' . $property . '" options not set');
225
+				throw new \BadMethodCallException('Invalid context, "'.$property.'" options not set');
226 226
 			}
227 227
 		}
228 228
 		return $context;
@@ -324,7 +324,7 @@  discard block
 block discarded – undo
324 324
 
325 325
 			// for seekable streams the pointer is moved back to the beginning of the encrypted block
326 326
 			// flush will start writing there when the position moves to another block
327
-			$positionInFile = (int)floor($this->position / $this->unencryptedBlockSize) *
327
+			$positionInFile = (int) floor($this->position / $this->unencryptedBlockSize) *
328 328
 				$this->util->getBlockSize() + $this->headerSize;
329 329
 			$resultFseek = $this->parentStreamSeek($positionInFile);
330 330
 
@@ -341,14 +341,14 @@  discard block
 block discarded – undo
341 341
 				// update position and liberate $data
342 342
 				if ($remainingLength < ($this->unencryptedBlockSize - $blockPosition)) {
343 343
 					$this->cache = substr($this->cache, 0, $blockPosition)
344
-						. $data . substr($this->cache, $blockPosition + $remainingLength);
344
+						. $data.substr($this->cache, $blockPosition + $remainingLength);
345 345
 					$this->position += $remainingLength;
346 346
 					$length += $remainingLength;
347 347
 					$data = '';
348 348
 					// if $data doesn't fit the current block, the fill the current block and reiterate
349 349
 					// after the block is filled, it is flushed and $data is updatedxxx
350 350
 				} else {
351
-					$this->cache = substr($this->cache, 0, $blockPosition) .
351
+					$this->cache = substr($this->cache, 0, $blockPosition).
352 352
 						substr($data, 0, $this->unencryptedBlockSize - $blockPosition);
353 353
 					$this->flush();
354 354
 					$this->position += ($this->unencryptedBlockSize - $blockPosition);
@@ -406,10 +406,10 @@  discard block
 block discarded – undo
406 406
 
407 407
 	public function stream_close() {
408 408
 		$this->flush('end');
409
-		$position = (int)floor($this->position/$this->unencryptedBlockSize);
410
-		$remainingData = $this->encryptionModule->end($this->fullPath, $position . 'end');
409
+		$position = (int) floor($this->position / $this->unencryptedBlockSize);
410
+		$remainingData = $this->encryptionModule->end($this->fullPath, $position.'end');
411 411
 		if ($this->readOnly === false) {
412
-			if(!empty($remainingData)) {
412
+			if (!empty($remainingData)) {
413 413
 				parent::stream_write($remainingData);
414 414
 			}
415 415
 			$this->encryptionStorage->updateUnencryptedSize($this->fullPath, $this->unencryptedSize);
@@ -428,16 +428,16 @@  discard block
 block discarded – undo
428 428
 			// automatically attempted when the file is written to disk -
429 429
 			// we are handling that separately here and we don't want to
430 430
 			// get into an infinite loop
431
-			$position = (int)floor($this->position/$this->unencryptedBlockSize);
432
-			$encrypted = $this->encryptionModule->encrypt($this->cache, $position . $positionPrefix);
431
+			$position = (int) floor($this->position / $this->unencryptedBlockSize);
432
+			$encrypted = $this->encryptionModule->encrypt($this->cache, $position.$positionPrefix);
433 433
 			$bytesWritten = parent::stream_write($encrypted);
434 434
 			$this->writeFlag = false;
435 435
 			// Check whether the write concerns the last block
436 436
 			// If so then update the encrypted filesize
437 437
 			// Note that the unencrypted pointer and filesize are NOT yet updated when flush() is called
438 438
 			// We recalculate the encrypted filesize as we do not know the context of calling flush()
439
-			$completeBlocksInFile=(int)floor($this->unencryptedSize/$this->unencryptedBlockSize);
440
-			if ($completeBlocksInFile === (int)floor($this->position/$this->unencryptedBlockSize)) {
439
+			$completeBlocksInFile = (int) floor($this->unencryptedSize / $this->unencryptedBlockSize);
440
+			if ($completeBlocksInFile === (int) floor($this->position / $this->unencryptedBlockSize)) {
441 441
 				$this->size = $this->util->getBlockSize() * $completeBlocksInFile;
442 442
 				$this->size += $bytesWritten;
443 443
 				$this->size += $this->headerSize;
@@ -456,9 +456,9 @@  discard block
 block discarded – undo
456 456
 		if ($this->cache === '' && !($this->position === $this->unencryptedSize && ($this->position % $this->unencryptedBlockSize) === 0)) {
457 457
 			// Get the data from the file handle
458 458
 			$data = parent::stream_read($this->util->getBlockSize());
459
-			$position = (int)floor($this->position/$this->unencryptedBlockSize);
460
-			$numberOfChunks = (int)($this->unencryptedSize / $this->unencryptedBlockSize);
461
-			if($numberOfChunks === $position) {
459
+			$position = (int) floor($this->position / $this->unencryptedBlockSize);
460
+			$numberOfChunks = (int) ($this->unencryptedSize / $this->unencryptedBlockSize);
461
+			if ($numberOfChunks === $position) {
462 462
 				$position .= 'end';
463 463
 			}
464 464
 			$this->cache = $this->encryptionModule->decrypt($data, $position);
Please login to merge, or discard this patch.
core/Controller/PreviewController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
 	 * @param string $mode
89 89
 	 * @return DataResponse|FileDisplayResponse
90 90
 	 */
91
-	public function getPreview (
91
+	public function getPreview(
92 92
 		string $file = '',
93 93
 		int $x = 32,
94 94
 		int $y = 32,
Please login to merge, or discard this patch.
lib/private/Mail/Message.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,8 +72,8 @@
 block discarded – undo
72 72
 
73 73
 		$convertedAddresses = [];
74 74
 
75
-		foreach($addresses as $email => $readableName) {
76
-			if(!is_numeric($email)) {
75
+		foreach ($addresses as $email => $readableName) {
76
+			if (!is_numeric($email)) {
77 77
 				list($name, $domain) = explode('@', $email, 2);
78 78
 				$domain = idn_to_ascii($domain, 0, INTL_IDNA_VARIANT_UTS46);
79 79
 				$convertedAddresses[$name.'@'.$domain] = $readableName;
Please login to merge, or discard this patch.
lib/private/Mail/EMailTemplate.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -402,7 +402,7 @@  discard block
 block discarded – undo
402 402
 
403 403
 		$this->htmlBody .= vsprintf($this->heading, [htmlspecialchars($title)]);
404 404
 		if ($plainTitle !== false) {
405
-			$this->plainBody .= $plainTitle . PHP_EOL . PHP_EOL;
405
+			$this->plainBody .= $plainTitle.PHP_EOL.PHP_EOL;
406 406
 		}
407 407
 	}
408 408
 
@@ -438,7 +438,7 @@  discard block
 block discarded – undo
438 438
 
439 439
 		$this->htmlBody .= vsprintf($this->bodyText, [$text]);
440 440
 		if ($plainText !== false) {
441
-			$this->plainBody .= $plainText . PHP_EOL . PHP_EOL;
441
+			$this->plainBody .= $plainText.PHP_EOL.PHP_EOL;
442 442
 		}
443 443
 	}
444 444
 
@@ -468,18 +468,18 @@  discard block
 block discarded – undo
468 468
 
469 469
 		$htmlText = $text;
470 470
 		if ($metaInfo) {
471
-			$htmlText = '<em style="color:#777;">' . $metaInfo . '</em><br>' . $htmlText;
471
+			$htmlText = '<em style="color:#777;">'.$metaInfo.'</em><br>'.$htmlText;
472 472
 		}
473 473
 		if ($icon !== '') {
474
-			$icon = '<img src="' . htmlspecialchars($icon) . '" alt="&bull;">';
474
+			$icon = '<img src="'.htmlspecialchars($icon).'" alt="&bull;">';
475 475
 		} else {
476 476
 			$icon = '&bull;';
477 477
 		}
478 478
 		$this->htmlBody .= vsprintf($this->listItem, [$icon, $htmlText]);
479 479
 		if ($plainText !== false) {
480
-			$this->plainBody .= '  * ' . $plainText;
480
+			$this->plainBody .= '  * '.$plainText;
481 481
 			if ($plainMetaInfo !== false) {
482
-				$this->plainBody .= ' (' . $plainMetaInfo . ')';
482
+				$this->plainBody .= ' ('.$plainMetaInfo.')';
483 483
 			}
484 484
 			$this->plainBody .= PHP_EOL;
485 485
 		}
@@ -540,8 +540,8 @@  discard block
 block discarded – undo
540 540
 		$textColor = $this->themingDefaults->getTextColorPrimary();
541 541
 
542 542
 		$this->htmlBody .= vsprintf($this->buttonGroup, [$color, $color, $urlLeft, $color, $textColor, $textColor, $textLeft, $urlRight, $textRight]);
543
-		$this->plainBody .= $plainTextLeft . ': ' . $urlLeft . PHP_EOL;
544
-		$this->plainBody .= $plainTextRight . ': ' . $urlRight . PHP_EOL . PHP_EOL;
543
+		$this->plainBody .= $plainTextLeft.': '.$urlLeft.PHP_EOL;
544
+		$this->plainBody .= $plainTextRight.': '.$urlRight.PHP_EOL.PHP_EOL;
545 545
 
546 546
 	}
547 547
 
@@ -573,10 +573,10 @@  discard block
 block discarded – undo
573 573
 		$this->htmlBody .= vsprintf($this->button, [$color, $color, $url, $color, $textColor, $textColor, $text]);
574 574
 
575 575
 		if ($plainText !== false) {
576
-			$this->plainBody .= $plainText . ': ';
576
+			$this->plainBody .= $plainText.': ';
577 577
 		}
578 578
 
579
-		$this->plainBody .=  $url . PHP_EOL;
579
+		$this->plainBody .= $url.PHP_EOL;
580 580
 
581 581
 	}
582 582
 
@@ -600,8 +600,8 @@  discard block
 block discarded – undo
600 600
 	 * @param string $text If the text is empty the default "Name - Slogan<br>This is an automatically sent email" will be used
601 601
 	 */
602 602
 	public function addFooter(string $text = '') {
603
-		if($text === '') {
604
-			$text = $this->themingDefaults->getName() . ' - ' . $this->themingDefaults->getSlogan() . '<br>' . $this->l10n->t('This is an automatically sent email, please do not reply.');
603
+		if ($text === '') {
604
+			$text = $this->themingDefaults->getName().' - '.$this->themingDefaults->getSlogan().'<br>'.$this->l10n->t('This is an automatically sent email, please do not reply.');
605 605
 		}
606 606
 
607 607
 		if ($this->footerAdded) {
@@ -613,7 +613,7 @@  discard block
 block discarded – undo
613 613
 
614 614
 		$this->htmlBody .= vsprintf($this->footer, [$text]);
615 615
 		$this->htmlBody .= $this->tail;
616
-		$this->plainBody .= PHP_EOL . '-- ' . PHP_EOL;
616
+		$this->plainBody .= PHP_EOL.'-- '.PHP_EOL;
617 617
 		$this->plainBody .= str_replace('<br>', PHP_EOL, $text);
618 618
 	}
619 619
 
Please login to merge, or discard this patch.
lib/private/Http/Client/Client.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 		}
76 76
 		$this->configured = true;
77 77
 
78
-		$this->stack->push(Middleware::mapRequest(function (RequestInterface $request) {
78
+		$this->stack->push(Middleware::mapRequest(function(RequestInterface $request) {
79 79
 			return $request
80 80
 				->withHeader('User-Agent', 'Nextcloud Server Crawler');
81 81
 		}));
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 			if ($this->config->getSystemValue('installed', false)) {
103 103
 				return $this->certificateManager->getAbsoluteBundlePath(null);
104 104
 			} else {
105
-				return \OC::$SERVERROOT . '/resources/config/ca-bundle.crt';
105
+				return \OC::$SERVERROOT.'/resources/config/ca-bundle.crt';
106 106
 			}
107 107
 		}
108 108
 	}
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 		$proxyUri = '';
119 119
 
120 120
 		if ($proxyUserPwd !== null) {
121
-			$proxyUri .= $proxyUserPwd . '@';
121
+			$proxyUri .= $proxyUserPwd.'@';
122 122
 		}
123 123
 		if ($proxyHost !== null) {
124 124
 			$proxyUri .= $proxyHost;
Please login to merge, or discard this patch.
lib/private/Federation/CloudIdManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
 	 */
81 81
 	public function getCloudId(string $user, string $remote): ICloudId {
82 82
 		// TODO check what the correct url is for remote (asking the remote)
83
-		return new CloudId($user. '@' . $remote, $user, $remote);
83
+		return new CloudId($user.'@'.$remote, $user, $remote);
84 84
 	}
85 85
 
86 86
 	/**
Please login to merge, or discard this patch.
lib/private/AppFramework/Http/Dispatcher.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 			// exception and creates a response. If no response is created, it is
103 103
 			// assumed that theres no middleware who can handle it and the error is
104 104
 			// thrown again
105
-		} catch(\Exception $exception){
105
+		} catch (\Exception $exception) {
106 106
 			$response = $this->middlewareDispatcher->afterException(
107 107
 				$controller, $methodName, $exception);
108 108
 		}
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 		// valid types that will be casted
138 138
 		$types = ['int', 'integer', 'bool', 'boolean', 'float'];
139 139
 
140
-		foreach($this->reflector->getParameters() as $param => $default) {
140
+		foreach ($this->reflector->getParameters() as $param => $default) {
141 141
 
142 142
 			// try to get the parameter from the request object and cast
143 143
 			// it to the type annotated in the @param annotation
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
 
147 147
 			// if this is submitted using GET or a POST form, 'false' should be
148 148
 			// converted to false
149
-			if(($type === 'bool' || $type === 'boolean') &&
149
+			if (($type === 'bool' || $type === 'boolean') &&
150 150
 				$value === 'false' &&
151 151
 				(
152 152
 					$this->request->method === 'GET' ||
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
 			) {
157 157
 				$value = false;
158 158
 
159
-			} elseif($value !== null && \in_array($type, $types, true)) {
159
+			} elseif ($value !== null && \in_array($type, $types, true)) {
160 160
 				settype($value, $type);
161 161
 			}
162 162
 
@@ -166,13 +166,13 @@  discard block
 block discarded – undo
166 166
 		$response = \call_user_func_array([$controller, $methodName], $arguments);
167 167
 
168 168
 		// format response
169
-		if($response instanceof DataResponse || !($response instanceof Response)) {
169
+		if ($response instanceof DataResponse || !($response instanceof Response)) {
170 170
 
171 171
 			// get format from the url format or request format parameter
172 172
 			$format = $this->request->getParam('format');
173 173
 
174 174
 			// if none is given try the first Accept header
175
-			if($format === null) {
175
+			if ($format === null) {
176 176
 				$headers = $this->request->getHeader('Accept');
177 177
 				$format = $controller->getResponderByHTTPHeader($headers, null);
178 178
 			}
Please login to merge, or discard this patch.
lib/private/AppFramework/Middleware/MiddlewareDispatcher.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 	/**
54 54
 	 * Constructor
55 55
 	 */
56
-	public function __construct(){
56
+	public function __construct() {
57 57
 		$this->middlewares = [];
58 58
 		$this->middlewareCounter = 0;
59 59
 	}
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 	 * Adds a new middleware
64 64
 	 * @param Middleware $middleWare the middleware which will be added
65 65
 	 */
66
-	public function registerMiddleware(Middleware $middleWare){
66
+	public function registerMiddleware(Middleware $middleWare) {
67 67
 		$this->middlewares[] = $middleWare;
68 68
 	}
69 69
 
@@ -85,11 +85,11 @@  discard block
 block discarded – undo
85 85
 	 * @param string $methodName the name of the method that will be called on
86 86
 	 *                           the controller
87 87
 	 */
88
-	public function beforeController(Controller $controller, string $methodName){
88
+	public function beforeController(Controller $controller, string $methodName) {
89 89
 		// we need to count so that we know which middlewares we have to ask in
90 90
 		// case there is an exception
91 91
 		$middlewareCount = \count($this->middlewares);
92
-		for($i = 0; $i < $middlewareCount; $i++){
92
+		for ($i = 0; $i < $middlewareCount; $i++) {
93 93
 			$this->middlewareCounter++;
94 94
 			$middleware = $this->middlewares[$i];
95 95
 			$middleware->beforeController($controller, $methodName);
@@ -113,11 +113,11 @@  discard block
 block discarded – undo
113 113
 	 * @throws \Exception the passed in exception if it can't handle it
114 114
 	 */
115 115
 	public function afterException(Controller $controller, string $methodName, \Exception $exception): Response {
116
-		for($i=$this->middlewareCounter-1; $i>=0; $i--){
116
+		for ($i = $this->middlewareCounter - 1; $i >= 0; $i--) {
117 117
 			$middleware = $this->middlewares[$i];
118 118
 			try {
119 119
 				return $middleware->afterException($controller, $methodName, $exception);
120
-			} catch(\Exception $exception){
120
+			} catch (\Exception $exception) {
121 121
 				continue;
122 122
 			}
123 123
 		}
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 	 * @return Response a Response object
137 137
 	 */
138 138
 	public function afterController(Controller $controller, string $methodName, Response $response): Response {
139
-		for($i= \count($this->middlewares)-1; $i>=0; $i--){
139
+		for ($i = \count($this->middlewares) - 1; $i >= 0; $i--) {
140 140
 			$middleware = $this->middlewares[$i];
141 141
 			$response = $middleware->afterController($controller, $methodName, $response);
142 142
 		}
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
 	 * @return string the output that should be printed
156 156
 	 */
157 157
 	public function beforeOutput(Controller $controller, string $methodName, string $output): string {
158
-		for($i= \count($this->middlewares)-1; $i>=0; $i--){
158
+		for ($i = \count($this->middlewares) - 1; $i >= 0; $i--) {
159 159
 			$middleware = $this->middlewares[$i];
160 160
 			$output = $middleware->beforeOutput($controller, $methodName, $output);
161 161
 		}
Please login to merge, or discard this patch.
lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -138,25 +138,25 @@  discard block
 block discarded – undo
138 138
 
139 139
 		// security checks
140 140
 		$isPublicPage = $this->reflector->hasAnnotation('PublicPage');
141
-		if(!$isPublicPage) {
142
-			if(!$this->isLoggedIn) {
141
+		if (!$isPublicPage) {
142
+			if (!$this->isLoggedIn) {
143 143
 				throw new NotLoggedInException();
144 144
 			}
145 145
 
146
-			if(!$this->reflector->hasAnnotation('NoAdminRequired') && !$this->isAdminUser) {
146
+			if (!$this->reflector->hasAnnotation('NoAdminRequired') && !$this->isAdminUser) {
147 147
 				throw new NotAdminException($this->l10n->t('Logged in user must be an admin'));
148 148
 			}
149 149
 		}
150 150
 
151 151
 		// Check for strict cookie requirement
152
-		if($this->reflector->hasAnnotation('StrictCookieRequired') || !$this->reflector->hasAnnotation('NoCSRFRequired')) {
153
-			if(!$this->request->passesStrictCookieCheck()) {
152
+		if ($this->reflector->hasAnnotation('StrictCookieRequired') || !$this->reflector->hasAnnotation('NoCSRFRequired')) {
153
+			if (!$this->request->passesStrictCookieCheck()) {
154 154
 				throw new StrictCookieMissingException();
155 155
 			}
156 156
 		}
157 157
 		// CSRF check - also registers the CSRF token since the session may be closed later
158 158
 		Util::callRegister();
159
-		if(!$this->reflector->hasAnnotation('NoCSRFRequired')) {
159
+		if (!$this->reflector->hasAnnotation('NoCSRFRequired')) {
160 160
 			/*
161 161
 			 * Only allow the CSRF check to fail on OCS Requests. This kind of
162 162
 			 * hacks around that we have no full token auth in place yet and we
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
 			 * Additionally we allow Bearer authenticated requests to pass on OCS routes.
166 166
 			 * This allows oauth apps (e.g. moodle) to use the OCS endpoints
167 167
 			 */
168
-			if(!$this->request->passesCSRFCheck() && !(
168
+			if (!$this->request->passesCSRFCheck() && !(
169 169
 					$controller instanceof OCSController && (
170 170
 						$this->request->getHeader('OCS-APIREQUEST') === 'true' ||
171 171
 						strpos($this->request->getHeader('Authorization'), 'Bearer ') === 0
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 		$defaultPolicy = $this->contentSecurityPolicyManager->getDefaultPolicy();
212 212
 		$defaultPolicy = $this->contentSecurityPolicyManager->mergePolicies($defaultPolicy, $policy);
213 213
 
214
-		if($this->cspNonceManager->browserSupportsCspV3()) {
214
+		if ($this->cspNonceManager->browserSupportsCspV3()) {
215 215
 			$defaultPolicy->useJsNonce($this->csrfTokenManager->getToken()->getEncryptedValue());
216 216
 		}
217 217
 
@@ -231,17 +231,17 @@  discard block
 block discarded – undo
231 231
 	 * @return Response a Response object or null in case that the exception could not be handled
232 232
 	 */
233 233
 	public function afterException($controller, $methodName, \Exception $exception): Response {
234
-		if($exception instanceof SecurityException) {
235
-			if($exception instanceof StrictCookieMissingException) {
234
+		if ($exception instanceof SecurityException) {
235
+			if ($exception instanceof StrictCookieMissingException) {
236 236
 				return new RedirectResponse(\OC::$WEBROOT);
237 237
  			}
238
-			if (stripos($this->request->getHeader('Accept'),'html') === false) {
238
+			if (stripos($this->request->getHeader('Accept'), 'html') === false) {
239 239
 				$response = new JSONResponse(
240 240
 					['message' => $exception->getMessage()],
241 241
 					$exception->getCode()
242 242
 				);
243 243
 			} else {
244
-				if($exception instanceof NotLoggedInException) {
244
+				if ($exception instanceof NotLoggedInException) {
245 245
 					$params = [];
246 246
 					if (isset($this->request->server['REQUEST_URI'])) {
247 247
 						$params['redirect_url'] = $this->request->server['REQUEST_URI'];
Please login to merge, or discard this patch.