@@ -39,7 +39,7 @@ public function __construct(
3939 parent ::__construct ();
4040 }
4141
42- protected function configure () {
42+ protected function configure (): void {
4343 parent ::configure ();
4444
4545 $ this
@@ -98,7 +98,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
9898 * @param OutputInterface $output
9999 * @param array $items
100100 */
101- protected function writeAppList (InputInterface $ input , OutputInterface $ output , $ items ) {
101+ protected function writeAppList (InputInterface $ input , OutputInterface $ output , $ items ): void {
102102 switch ($ input ->getOption ('output ' )) {
103103 case self ::OUTPUT_FORMAT_PLAIN :
104104 $ output ->writeln ('Enabled: ' );
@@ -119,7 +119,7 @@ protected function writeAppList(InputInterface $input, OutputInterface $output,
119119 * @param CompletionContext $context
120120 * @return array
121121 */
122- public function completeOptionValues ($ optionName , CompletionContext $ context ) {
122+ public function completeOptionValues ($ optionName , CompletionContext $ context ): array {
123123 if ($ optionName === 'shipped ' ) {
124124 return ['true ' , 'false ' ];
125125 }
@@ -131,7 +131,7 @@ public function completeOptionValues($optionName, CompletionContext $context) {
131131 * @param CompletionContext $context
132132 * @return string[]
133133 */
134- public function completeArgumentValues ($ argumentName , CompletionContext $ context ) {
134+ public function completeArgumentValues ($ argumentName , CompletionContext $ context ): array {
135135 return [];
136136 }
137137}
0 commit comments