Skip to content

Commit f3212cd

Browse files
committed
Merge branch '6.1' into 6.2
* 6.1: Fix CS Compatibility with doctrine/annotations 2 [Console] Fix a test when pcntl is not available (following #48329) [FrameworkBundle] fix: fix typo about help
2 parents 5a9bd5c + 9413b2e commit f3212cd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Tests/ApplicationTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2005,6 +2005,10 @@ public function testSetSignalsToDispatchEvent()
20052005

20062006
public function testSignalableCommandInterfaceWithoutSignals()
20072007
{
2008+
if (!\defined('SIGUSR1')) {
2009+
$this->markTestSkipped('SIGUSR1 not available');
2010+
}
2011+
20082012
$command = new SignableCommand(false);
20092013

20102014
$dispatcher = new EventDispatcher();

0 commit comments

Comments
 (0)