Skip to content

Commit a258c31

Browse files
committed
Merge branch '5.4' into 6.0
* 5.4: Fix TranslationTrait for multiple domains Fix parameter types for ProcessHelper::mustRun() Fix: Wording [SecurityBundle] Fix ambiguous deprecation message on missing provider Remove dead code in tests Remove return void PHPDoc in test Fix merge
2 parents 5f0f0c5 + 883d353 commit a258c31

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

Command/ContainerLintCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
6969
return 1;
7070
}
7171

72-
$io->success('The container was lint successfully: all services are injected with values that are compatible with their type declarations.');
72+
$io->success('The container was linted successfully: all services are injected with values that are compatible with their type declarations.');
7373

7474
return 0;
7575
}

Tests/Command/EventDispatcherDebugCommandTest.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,6 @@ public function provideCompletionSuggestions()
4141

4242
private function createCommandCompletionTester(): CommandCompletionTester
4343
{
44-
$dispatcher = new EventDispatcher();
45-
$otherDispatcher = new EventDispatcher();
46-
47-
$dispatcher->addListener('event', ['Listener']);
48-
$otherDispatcher->addListener('other_event', ['OtherListener']);
49-
5044
$dispatchers = new ServiceLocator([
5145
'event_dispatcher' => function () {
5246
$dispatcher = new EventDispatcher();

0 commit comments

Comments
 (0)