Skip to content

Commit

Permalink
UHF-8706: code fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rpnykanen committed Sep 10, 2024
1 parent a2533ea commit 1fc3c1d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ public function sendIndexingRequest(SchedulerEvent $event): void {
try {
$this->jobIndexingService->indexEntity($entity);
}
catch(\Exception $exception){
// has been logged by indexing service.
catch (\Exception $exception) {
// Has been logged by indexing service.
}
}

Expand All @@ -73,7 +73,7 @@ public function sendDeindexingRequest(SchedulerEvent $event): void {
try {
$this->jobIndexingService->deindexEntity($entity);
}
catch(\Exception) {
catch (\Exception) {
// Has been logged by indexing service.
}
}
Expand Down

0 comments on commit 1fc3c1d

Please sign in to comment.