Skip to content

Commit ecedfb3

Browse files
authored
Merge pull request #1 from odan/analysis-86DwQa
Apply fixes from StyleCI
2 parents 2101330 + 1a2858f commit ecedfb3

3 files changed

Lines changed: 2 additions & 4 deletions

File tree

src/Slim/Session/Adapter/PhpSecureSessionAdapter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,4 +116,4 @@ protected function decrypt($data, $key)
116116

117117
return $data;
118118
}
119-
}
119+
}

tests/AbstractTestCase.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,4 @@
99
*/
1010
abstract class AbstractTestCase extends TestCase
1111
{
12-
13-
1412
}

tests/PhpSessionAdapterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public function testStart()
7070
$oldId = $this->session->getId();
7171
$this->assertTrue($this->session->regenerateId());
7272
$newId = $this->session->getId();
73-
$this->assertNotEquals($oldId, $newId);
73+
$this->assertNotSame($oldId, $newId);
7474

7575
$this->session->setId($oldId);
7676
$this->assertSame($oldId, $this->session->getId());

0 commit comments

Comments
 (0)