Skip to content

Commit 0b9d41c

Browse files
committed
minor #624 Add void return type to initialize methods in store commands (OskarStark)
This PR was merged into the main branch. Discussion ---------- Add `void` return type to `initialize` methods in store commands | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | Docs? | no | Issues | -- | License | MIT Commits ------- d18ce53 Add void return type to initialize methods in store commands
2 parents b086c6e + d18ce53 commit 0b9d41c

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)