Skip to content
Snippets Groups Projects
Commit 0400fb76 authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

Pas de SymfonyCommand, juste Command

parent 3d70e833
No related branches found
No related tags found
No related merge requests found
Pipeline #32191 passed
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
namespace <namespace>; namespace <namespace>;
use Symfony\Component\Console\Command\Command as SymfonyCommand; use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle; use Symfony\Component\Console\Style\SymfonyStyle;
...@@ -12,7 +12,7 @@ use Symfony\Component\Console\Style\SymfonyStyle; ...@@ -12,7 +12,7 @@ use Symfony\Component\Console\Style\SymfonyStyle;
* *
* @author <author> * @author <author>
*/ */
class <classname> extends SymfonyCommand class <classname> extends Command
{ {
protected function configure(): void protected function configure(): void
{ {
...@@ -25,6 +25,6 @@ class <classname> extends SymfonyCommand ...@@ -25,6 +25,6 @@ class <classname> extends SymfonyCommand
{ {
$io = new SymfonyStyle($input, $output); $io = new SymfonyStyle($input, $output);
return SymfonyCommand::SUCCESS; return Command::SUCCESS;
} }
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment