Skip to content

Commit

Permalink
fix(TouchAll): Set compatible return value
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminJoergerMakaira authored Oct 1, 2024
2 parents ea1f9f1 + 3056f2f commit 182fd93
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Makaira/Connect/Command/CleanupCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$repo->cleanup();

$output->writeln('Done.');

return 0;
}
}
2 changes: 2 additions & 0 deletions src/Makaira/Connect/Command/DebugChangeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
} else {
var_dump($changes);
}

return 0;
}
}
2 changes: 2 additions & 0 deletions src/Makaira/Connect/Command/TouchAllCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$repo->touchAll($input->getOption('shop-id'));

$output->writeln('Done.');

return 0;
}
}

0 comments on commit 182fd93

Please sign in to comment.