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.
1 parent 9d4b326 commit 8ce3ba0Copy full SHA for 8ce3ba0
Tests/Unit/EventListener/SessionListenerTest.php
@@ -49,6 +49,10 @@ public function testOnKernelRequestRemainsUntouched()
49
50
public function testOnFinishRequestRemainsUntouched()
51
{
52
+ if (!method_exists('Symfony\Component\HttpKernel\EventListener\SessionListener', 'onFinishRequest')) {
53
+ $this->markTestSkipped('Method onFinishRequest does not exist on Symfony\Component\HttpKernel\EventListener\SessionListener');
54
+ }
55
+
56
$event = $this
57
->getMockBuilder('Symfony\Component\HttpKernel\Event\FinishRequestEvent')
58
->disableOriginalConstructor()
0 commit comments