Skip to content

Commit

Permalink
Merge branch '6.1' into 6.2
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
derrabus committed Dec 20, 2022
2 parents 5a9bd5c + 9413b2e commit f3212cd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Tests/ApplicationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2005,6 +2005,10 @@ public function testSetSignalsToDispatchEvent()

public function testSignalableCommandInterfaceWithoutSignals()
{
if (!\defined('SIGUSR1')) {
$this->markTestSkipped('SIGUSR1 not available');
}

$command = new SignableCommand(false);

$dispatcher = new EventDispatcher();
Expand Down

0 comments on commit f3212cd

Please sign in to comment.