We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1494c79 + 1c19203 commit 16dfa5aCopy full SHA for 16dfa5a
Tests/Session/Storage/Handler/MarshallingSessionHandlerTest.php
@@ -34,8 +34,8 @@ class MarshallingSessionHandlerTest extends TestCase
34
35
protected function setUp(): void
36
{
37
- $this->marshaller = $this->getMockBuilder(MarshallerInterface::class)->getMock();
38
- $this->handler = $this->getMockBuilder(AbstractSessionHandler::class)->getMock();
+ $this->marshaller = $this->createMock(MarshallerInterface::class);
+ $this->handler = $this->createMock(AbstractSessionHandler::class);
39
}
40
41
public function testOpen()
0 commit comments