Completed
Push — master ( 092a08...996f7b )
by smiley
01:48
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
@@ -82,8 +82,7 @@
 block discarded – undo
82 82
 			}
83 83
 
84 84
 			return $this->options->use_encryption ? $this->decrypt($q[0]->data) : $q[0]->data;
85
-		}
86
-		catch(\Exception $e){
85
+		} catch(\Exception $e){
87 86
 			throw new SessionHandlerException($e->getMessage());
88 87
 		}
89 88
 
Please login to merge, or discard this patch.