Completed
Branch newinternal (526082)
by Simon
04:16
created
includes/Router/RequestRouter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -423,7 +423,7 @@
 block discarded – undo
423 423
 	}
424 424
 
425 425
 	/**
426
-	 * @return callable
426
+	 * @return string[]
427 427
 	 */
428 428
 	protected function getDefaultRoute()
429 429
 	{
Please login to merge, or discard this patch.
includes/Router/PublicRequestRouter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -423,7 +423,7 @@
 block discarded – undo
423 423
 	}
424 424
 
425 425
 	/**
426
-	 * @return callable
426
+	 * @return string[]
427 427
 	 */
428 428
 	protected function getDefaultRoute()
429 429
 	{
Please login to merge, or discard this patch.
includes/DataObjects/Request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -414,7 +414,7 @@
 block discarded – undo
414 414
 			. '|' . $this->forwardedip  // } private data not known to those without access
415 415
 			. '|' . $this->useragent    // }
416 416
 			. '|' . $this->email        // }
417
-			. '|' . $this->status;      // to rudimentarily invalidate the token on status change
417
+			. '|' . $this->status; // to rudimentarily invalidate the token on status change
418 418
 
419 419
 		return hash('sha256', $data);
420 420
 	}
Please login to merge, or discard this patch.