@@ -21,7 +21,7 @@ class AzureBrokerPropertiesStamp implements StampInterface
2121 private $ correlationId ;
2222
2323 /** @var string|null */
24- private $ sessionID ;
24+ private $ sessionId ;
2525
2626 /** @var int|null */
2727 private $ deliveryCount ;
@@ -65,7 +65,7 @@ class AzureBrokerPropertiesStamp implements StampInterface
6565 public function __construct (
6666 ?string $ contentType = null ,
6767 ?string $ correlationId = null ,
68- ?string $ sessionID = null ,
68+ ?string $ sessionId = null ,
6969 ?int $ deliveryCount = null ,
7070 ?\DateTimeInterface $ lockedUntilUtc = null ,
7171 ?string $ lockToken = null ,
@@ -82,7 +82,7 @@ public function __construct(
8282 ) {
8383 $ this ->contentType = $ contentType ;
8484 $ this ->correlationId = $ correlationId ;
85- $ this ->sessionID = $ sessionID ;
85+ $ this ->sessionId = $ sessionId ;
8686 $ this ->deliveryCount = $ deliveryCount ;
8787 $ this ->lockedUntilUtc = $ lockedUntilUtc ;
8888 $ this ->lockToken = $ lockToken ;
@@ -112,7 +112,7 @@ public static function createFromResponse(ResponseInterface $response): self
112112 * @var null|array{
113113 * ContentType?: string,
114114 * CorrelationId?: string,
115- * SessionID ?: string,
115+ * SessionId ?: string,
116116 * DeliveryCount?: int,
117117 * LockedUntilUtc?: string,
118118 * LockToken?: string,
@@ -152,7 +152,7 @@ public static function createFromResponse(ResponseInterface $response): self
152152 return new self (
153153 $ properties ['ContentType ' ] ?? null ,
154154 $ properties ['CorrelationId ' ] ?? null ,
155- $ properties ['SessionID ' ] ?? null ,
155+ $ properties ['SessionId ' ] ?? null ,
156156 $ properties ['DeliveryCount ' ] ?? null ,
157157 $ lockedUntilUtc ,
158158 $ properties ['LockToken ' ] ?? null ,
@@ -179,7 +179,7 @@ public function encode(): string
179179 $ properties = [
180180 'ContentType ' => $ this ->contentType ,
181181 'CorrelationId ' => $ this ->correlationId ,
182- 'SessionID ' => $ this ->sessionID ,
182+ 'SessionId ' => $ this ->sessionId ,
183183 'DeliveryCount ' => $ this ->deliveryCount ,
184184 'LockedUntilUtc ' => $ this ->lockedUntilUtc !== null
185185 ? $ this ->lockedUntilUtc ->format ('Y-m-d H:i:s ' )
@@ -230,14 +230,14 @@ public function setCorrelationId(?string $correlationId): self
230230 return $ this ;
231231 }
232232
233- public function getSessionID (): ?string
233+ public function getSessionId (): ?string
234234 {
235- return $ this ->sessionID ;
235+ return $ this ->sessionId ;
236236 }
237237
238- public function setSessionID (?string $ sessionID ): self
238+ public function setSessionId (?string $ sessionId ): self
239239 {
240- $ this ->sessionID = $ sessionID ;
240+ $ this ->sessionId = $ sessionId ;
241241 return $ this ;
242242 }
243243
0 commit comments