Passed
Push — master ( 9177af...6ddd14 )
by Fabio
06:06
created
framework/Web/THttpSessionHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 	 * @param int $max_lifetime the number of seconds after which data will be seen as 'garbage' and cleaned up.
67 67
 	 * @return false|int whether session is GCed successfully
68 68
 	 */
69
-	public function gc(int $max_lifetime): int|false
69
+	public function gc(int $max_lifetime): int | false
70 70
 	{
71 71
 		return $this->_session->_gc($max_lifetime);
72 72
 	}
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 	 * @param string $id session ID
88 88
 	 * @return false|string the session data
89 89
 	 */
90
-	public function read(string $id): string|false
90
+	public function read(string $id): string | false
91 91
 	{
92 92
 		return $this->_session->_read($id);
93 93
 	}
Please login to merge, or discard this patch.