Skip to content

Commit

Permalink
DISPLAY-1019: Applied coding standards
Browse files Browse the repository at this point in the history
  • Loading branch information
tuj committed Oct 12, 2023
1 parent d5b1daf commit ae1b9df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Feed/KobaFeedType.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public function getData(Feed $feed): array

return $results;
} catch (\Throwable $throwable) {
$this->logger->error("{code}: {message}", [
$this->logger->error('{code}: {message}', [
'code' => $throwable->getCode(),
'message' => $throwable->getMessage(),
]);
Expand Down Expand Up @@ -212,7 +212,7 @@ public function getConfigOptions(Request $request, FeedSource $feedSource, strin
return $resources;
}
} catch (\Throwable $throwable) {
$this->logger->error("{code}: {message}", [
$this->logger->error('{code}: {message}', [
'code' => $throwable->getCode(),
'message' => $throwable->getMessage(),
]);
Expand Down

0 comments on commit ae1b9df

Please sign in to comment.