Skip to content

Commit

Permalink
fix PersistentSubscriptionDetails
Browse files Browse the repository at this point in the history
  • Loading branch information
prolic committed Jan 25, 2019
1 parent f98e126 commit 893f8a1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -93,7 +93,7 @@ public static function fromArray(array $data): self
$details->totalInFlightMessages = $data['totalInFlightMessages'];
$details->parkedMessageUri = $data['parkedMessageUri'];
$details->getMessagesUri = $data['getMessagesUri'];
$details->connectionCount = $details['connectionCount'] ?? 0;
$details->connectionCount = $data['connectionCount'] ?? 0;

return $details;
}
Expand Down

0 comments on commit 893f8a1

Please sign in to comment.