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 843e6ba commit 563839fCopy full SHA for 563839f
tests/App/Command/TestCommand.php
@@ -21,10 +21,12 @@ public function __construct(KernelInterface $kernel)
21
$this->kernel = $kernel;
22
}
23
24
- protected function execute(InputInterface $input, OutputInterface $output): void
+ protected function execute(InputInterface $input, OutputInterface $output): int
25
{
26
$output->writeln('Symfony version: ' . Kernel::VERSION_ID);
27
$output->writeln('Environment: ' . $this->kernel->getEnvironment());
28
$output->writeln('Verbosity level set: ' . $output->getVerbosity());
29
+
30
+ return 0;
31
32
tests/App/config.yml
@@ -64,3 +64,4 @@ services:
64
65
twig:
66
strict_variables: true
67
+ exception_controller: ~
0 commit comments