Skip to content

Commit

Permalink
Update src from PHP Codesniffer
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Sep 12, 2024
1 parent 565a67f commit 5ea1b7a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/Service/ZgwToVrijbrpService.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ private function handleCase(array $zaak): void
}

}//end handleCase()


/**
* Function to recursively convert BSONDocument/BSONArray to PHP array
*
Expand All @@ -114,8 +114,10 @@ function bsonToArray(mixed $bson): mixed
if ($bson instanceof BSONDocument || $bson instanceof BSONArray) {
return array_map('bsonToArray', (array) $bson);
}

return $bson;
}

}//end bsonToArray()


/**
Expand Down

0 comments on commit 5ea1b7a

Please sign in to comment.