Skip to content

Commit ad30d76

Browse files
author
Olivier Dolbeau
authored
Merge pull request #350 from odolbeau/fix-tests
Fix tests
2 parents 8d3ead8 + 95b2d66 commit ad30d76

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Command/DeleteObsoleteCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ protected function configure(): void
7272
;
7373
}
7474

75-
protected function execute(InputInterface $input, OutputInterface $output): void
75+
protected function execute(InputInterface $input, OutputInterface $output): int
7676
{
7777
$configName = $input->getArgument('configuration');
7878
$locales = [];

Command/DownloadCommand.php

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

66-
protected function execute(InputInterface $input, OutputInterface $output): void
66+
protected function execute(InputInterface $input, OutputInterface $output): int
6767
{
6868
$configName = $input->getArgument('configuration');
6969
$storage = $this->getStorage($configName);

Command/ExtractCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ protected function configure(): void
8888
;
8989
}
9090

91-
protected function execute(InputInterface $input, OutputInterface $output): void
91+
protected function execute(InputInterface $input, OutputInterface $output): int
9292
{
9393
$configName = $input->getArgument('configuration');
9494
if (null === $config = $this->configurationManager->getConfiguration($configName)) {

Command/StatusCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ protected function configure(): void
6969
;
7070
}
7171

72-
protected function execute(InputInterface $input, OutputInterface $output): void
72+
protected function execute(InputInterface $input, OutputInterface $output): int
7373
{
7474
$configName = $input->getArgument('configuration');
7575
if (null === $config = $this->configurationManager->getConfiguration($configName)) {

Command/SyncCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ protected function configure(): void
4343
->addArgument('direction', InputArgument::OPTIONAL, 'Use "down" if local changes should be overwritten, otherwise "up"', 'down');
4444
}
4545

46-
protected function execute(InputInterface $input, OutputInterface $output): void
46+
protected function execute(InputInterface $input, OutputInterface $output): int
4747
{
4848
switch ($input->getArgument('direction')) {
4949
case 'down':

0 commit comments

Comments
 (0)