Skip to content

Commit d18ce53

Browse files
committed
Add void return type to initialize methods in store commands
1 parent b086c6e commit d18ce53

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/store/src/Command/DropStoreCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ protected function configure(): void
6464
;
6565
}
6666

67-
protected function initialize(InputInterface $input, OutputInterface $output)
67+
protected function initialize(InputInterface $input, OutputInterface $output): void
6868
{
6969
$storeName = $input->getArgument('store');
7070
if (!$this->stores->has($storeName)) {

src/store/src/Command/SetupStoreCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ protected function configure(): void
6262
;
6363
}
6464

65-
protected function initialize(InputInterface $input, OutputInterface $output)
65+
protected function initialize(InputInterface $input, OutputInterface $output): void
6666
{
6767
$storeName = $input->getArgument('store');
6868
if (!$this->stores->has($storeName)) {

0 commit comments

Comments
 (0)