From 0cbe71c37ade5d122fa75ae3d74562db9ae16a59 Mon Sep 17 00:00:00 2001 From: Moshe Weitzman Date: Thu, 4 Apr 2024 08:09:41 -0400 Subject: [PATCH] Rename method so it doesnt override parent --- tests/src/ExampleAnnotatedCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/ExampleAnnotatedCommand.php b/tests/src/ExampleAnnotatedCommand.php index 40e4ab8..c6adae6 100644 --- a/tests/src/ExampleAnnotatedCommand.php +++ b/tests/src/ExampleAnnotatedCommand.php @@ -44,7 +44,7 @@ public function myEcho($one, $two = '', $multiple = [], $flip = false) * @usage bet alpha --flip * Concatenate "alpha" and "bet". */ - protected function execute(InputInterface $input, OutputInterface $output) + protected function myEchoAnnotated(InputInterface $input, OutputInterface $output) { $one = $input->getArgument('one'); $two = $input->getArgument('two');