Skip to content

Commit

Permalink
Merge branch '5.4' into 6.0
Browse files Browse the repository at this point in the history
* 5.4:
  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 be29442 + 9bd719e commit 9050b8c
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 @@ -1969,6 +1969,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 9050b8c

Please sign in to comment.