Skip to content

Commit 563839f

Browse files
committed
Remove a few deprecations
1 parent 843e6ba commit 563839f

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

tests/App/Command/TestCommand.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,12 @@ public function __construct(KernelInterface $kernel)
2121
$this->kernel = $kernel;
2222
}
2323

24-
protected function execute(InputInterface $input, OutputInterface $output): void
24+
protected function execute(InputInterface $input, OutputInterface $output): int
2525
{
2626
$output->writeln('Symfony version: ' . Kernel::VERSION_ID);
2727
$output->writeln('Environment: ' . $this->kernel->getEnvironment());
2828
$output->writeln('Verbosity level set: ' . $output->getVerbosity());
29+
30+
return 0;
2931
}
3032
}

tests/App/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,4 @@ services:
6464

6565
twig:
6666
strict_variables: true
67+
exception_controller: ~

0 commit comments

Comments
 (0)