Passed
Pull Request — master (#1163)
by Abdul Malik
10:59
created
src/Session/tests/SessionTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
     public function tearDown(): void
41 41
     {
42
-        if ((int)session_status() === PHP_SESSION_ACTIVE) {
42
+        if ((int)session_status() === PHP_SESSION_ACTIVE){
43 43
             session_abort();
44 44
         }
45 45
     }
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
         $this->assertSame('default', $section->getName());
114 114
 
115 115
         $section->set('key', 'value');
116
-        foreach ($section as $key => $value) {
116
+        foreach ($section as $key => $value){
117 117
             $this->assertSame('key', $key);
118 118
             $this->assertSame('value', $value);
119 119
         }
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
         $section->key = 'new value';
146 146
         $this->assertSame('new value', $section->key);
147 147
         $this->assertTrue(isset($section['key']));
148
-        $this->assertTrue(! empty($section->key));
148
+        $this->assertTrue(!empty($section->key));
149 149
 
150 150
         $section->delete('key');
151 151
         $this->assertFalse(isset($section['key']));
Please login to merge, or discard this patch.