Skip to content

Commit 15ed900

Browse files
Merge branch '7.4' into 8.0
* 7.4: Fix merge
2 parents 0dd7237 + e1e6770 commit 15ed900

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Tests/Tester/ApplicationTesterTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,10 @@ public function testShellVerbosityDoesNotOverrideInteractiveAndVerbosity(callabl
101101
$application = new Application();
102102
$application->setAutoExit(false);
103103
$application->register('foo')
104-
->setCode(static function ($input, $output) {
104+
->setCode(static function (InputInterface $input, OutputInterface $output): int {
105105
$output->writeln('foo');
106+
107+
return 0;
106108
})
107109
;
108110

0 commit comments

Comments
 (0)