diff options
Diffstat (limited to 'apps/encryption/tests/SessionTest.php')
-rw-r--r-- | apps/encryption/tests/SessionTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/encryption/tests/SessionTest.php b/apps/encryption/tests/SessionTest.php index a11aca2f75b..25c652b36af 100644 --- a/apps/encryption/tests/SessionTest.php +++ b/apps/encryption/tests/SessionTest.php @@ -201,7 +201,7 @@ class SessionTest extends TestCase { /** * */ - protected function setUp() { + protected function setUp(): void { parent::setUp(); $this->sessionMock = $this->createMock(ISession::class); @@ -221,7 +221,7 @@ class SessionTest extends TestCase { $this->instance = new Session($this->sessionMock); } - protected function tearDown() { + protected function tearDown(): void { self::$tempStorage = []; parent::tearDown(); } |