@@ -39,7 +39,7 @@ discard block |
||
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 |
||
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 |
||
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'])); |