We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66aaab8 commit e1e6770Copy full SHA for e1e6770
Tests/Tester/ApplicationTesterTest.php
@@ -101,8 +101,10 @@ public function testShellVerbosityDoesNotOverrideInteractiveAndVerbosity(callabl
101
$application = new Application();
102
$application->setAutoExit(false);
103
$application->register('foo')
104
- ->setCode(static function ($input, $output) {
+ ->setCode(static function (InputInterface $input, OutputInterface $output): int {
105
$output->writeln('foo');
106
+
107
+ return 0;
108
})
109
;
110
0 commit comments