You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$this->logger->warning('Unable to decode a message from {clientId} client.', ['clientId' => $clientId]);
69
-
}
65
+
$this->logger?->warning('Unable to decode a message from {clientId} client.', ['clientId' => $clientId]);
70
66
71
67
continue;
72
68
}
73
69
74
70
if (!\is_array($payload) || \count($payload) < 2 || !$payload[0] instanceof Data || !\is_array($payload[1])) {
75
-
if ($this->logger) {
76
-
$this->logger->warning('Invalid payload from {clientId} client. Expected an array of two elements (Data $data, array $context)', ['clientId' => $clientId]);
77
-
}
71
+
$this->logger?->warning('Invalid payload from {clientId} client. Expected an array of two elements (Data $data, array $context)', ['clientId' => $clientId]);
0 commit comments