From 502e2699144a0c39ee51271d18bcf57b0202ab43 Mon Sep 17 00:00:00 2001 From: Rajeshreeputra Date: Wed, 21 Jun 2023 11:43:29 +0530 Subject: [PATCH] Update CompletionCommand.php Add return type --- src/CompletionCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CompletionCommand.php b/src/CompletionCommand.php index 8f078c2..270a8fe 100644 --- a/src/CompletionCommand.php +++ b/src/CompletionCommand.php @@ -51,7 +51,7 @@ public function getNativeDefinition(): InputDefinition * Any global options defined by user-code are meaningless to this command. * Options outside of the core defaults are ignored to avoid name and shortcut conflicts. */ - public function mergeApplicationDefinition($mergeArgs = true) + public function mergeApplicationDefinition($mergeArgs = true): void { // Get current application options $appDefinition = $this->getApplication()->getDefinition();