Skip to content

Commit

Permalink
Command improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
bbrands02 committed Oct 10, 2024
1 parent ed7115e commit cb15a9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/ZaakCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
if (isset($zaakId) === true
&& Uuid::isValid($zaakId) === true
) {
if ($this->zaakService->getZaak($action->getConfiguration(), $zaakId) === true) {
if ($this->zaakService->zaakHandler(['caseId' => $zaakId], $action->getConfiguration()) === true) {
return Command::FAILURE;
}

Expand Down

0 comments on commit cb15a9d

Please sign in to comment.