Skip to content

Commit c67702c

Browse files
committed
fixed the failed static analysis - code standdards and psalm
1 parent 5d99f82 commit c67702c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Bolt/BoltConnection.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -336,9 +336,9 @@ public function close(): void
336336
$message = $this->messageFactory->createGoodbyeMessage();
337337
$message->send();
338338
} catch (Throwable $e) {
339-
$this->logger?->log(LogLevel::DEBUG, 'Failed to send GOODBYE message during connection close', [
339+
$this->logger?->log(LogLevel::DEBUG, 'Failed to send GOODBYE message during connection close', [
340340
'error' => $e->getMessage(),
341-
'connection' => $this->getServerAddress()->__toString()
341+
'connection' => $this->getServerAddress()->__toString(),
342342
]);
343343
}
344344
}
@@ -347,7 +347,7 @@ public function close(): void
347347
}
348348
} catch (Throwable $e) {
349349
$this->logger?->log(LogLevel::DEBUG, 'Error during connection close', [
350-
'error' => $e->getMessage()
350+
'error' => $e->getMessage(),
351351
]);
352352
}
353353
}

0 commit comments

Comments
 (0)