Passed
Branch master (583336)
by smiley
02:58
created
src/SessionHandlerAbstract.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -143,8 +143,7 @@
 block discarded – undo
143 143
 			if(in_array($this->options->hash_algo, hash_algos())){
144 144
 				ini_set('session.hash_function', $this->options->hash_algo);
145 145
 			}
146
-		}
147
-		else{
146
+		} else{
148 147
 			ini_set('session.sid_bits_per_character', 6);
149 148
 			ini_set('session.sid_length', 128);
150 149
 		}
Please login to merge, or discard this patch.
src/DBSessionHandler.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -145,8 +145,7 @@
 block discarded – undo
145 145
 			}
146 146
 
147 147
 			return $this->decrypt($q[0]->data);
148
-		}
149
-		catch(\Exception $e){
148
+		} catch(\Exception $e){
150 149
 			throw new SessionHandlerException($e->getMessage());
151 150
 		}
152 151
 
Please login to merge, or discard this patch.