Skip to content

Commit

Permalink
Add beter user feedback for cronjob:command in ZgwToVrijbrpService
Browse files Browse the repository at this point in the history
  • Loading branch information
WilcoLouwerse committed Sep 5, 2024
1 parent fb4c2af commit 37b3c3d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Service/ZgwToVrijbrpService.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ public function checkCasesToVrijBRPHandler(array $data, array $configuration): a

// Loop through results and start throwing events that will send api requests to VrijBRP.
foreach ($result['results'] as $zaak) {
$this->style->writeln('Handling case with id: '.$zaak['_id'].' & case type: '.$zaak['embedded']['zaaktype']['identificatie']);

Check warning on line 98 in src/Service/ZgwToVrijbrpService.php

View workflow job for this annotation

GitHub Actions / build

Line exceeds 125 characters; contains 138 characters

Check failure on line 99 in src/Service/ZgwToVrijbrpService.php

View workflow job for this annotation

GitHub Actions / build

Whitespace found at end of line
// Let's make sure we send the data of this object with the thrown event in the exact same way we did before
// without embedded for example (in other Bundles like ZdsToZGWBundle)

Check failure on line 101 in src/Service/ZgwToVrijbrpService.php

View workflow job for this annotation

GitHub Actions / build

Inline comments must end in full-stops, exclamation marks, or question marks
$object = $this->entityManager->getRepository('App:ObjectEntity')->find($zaak['_id']);
Expand Down

0 comments on commit 37b3c3d

Please sign in to comment.