From 7cfc81e6e06ea5ca97bfbe4e2c634efd36ceed5f Mon Sep 17 00:00:00 2001 From: GitHub Actions <> Date: Tue, 8 Oct 2024 13:32:40 +0000 Subject: [PATCH] Update src from PHP Codesniffer --- src/Service/ZaakService.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/Service/ZaakService.php b/src/Service/ZaakService.php index 61cca70..083ad80 100644 --- a/src/Service/ZaakService.php +++ b/src/Service/ZaakService.php @@ -463,11 +463,12 @@ public function getZaak(array $configuration, string $caseID) }//end getZaak() + /** * Updates the taak with the zaak url. * - * @param ObjectEntity $zaak The zaak object. - * @param string $taakId The taak id. + * @param ObjectEntity $zaak The zaak object. + * @param string $taakId The taak id. * * @return ObjectEntity The updated taak object. */ @@ -484,6 +485,7 @@ private function updateTaak(ObjectEntity $zaak, string $taakId): ObjectEntity $this->logger->info("Updated taak with zaak url"); return $taak; + }//end updateTaak() @@ -516,6 +518,7 @@ public function zaakHandler(?array $data = [], ?array $configuration = []) if (isset($data['taakId']) === true) { $this->updateTaak($zaak, $data['taakId']); } + return $data; }