From f455e9fe0d0a2f07ee2766b464a963f2cfabe967 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Thu, 6 Aug 2026 12:53:53 +0200 Subject: [PATCH] refactor(commands): Add type hinting to execute method Signed-off-by: Carl Schwan --- lib/Command/Search.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Command/Search.php b/lib/Command/Search.php index dd2928d6..f5bb156f 100644 --- a/lib/Command/Search.php +++ b/lib/Command/Search.php @@ -53,7 +53,7 @@ protected function configure() { ); } - protected function execute(InputInterface $input, OutputInterface $output) { + protected function execute(InputInterface $input, OutputInterface $output): int { $userId = $input->getArgument('uid'); $prompt = $input->getArgument('prompt'); $limit = $input->getOption('limit');