Skip to content

Commit 5d0b979

Browse files
Merge pull request #10 from nortoh/change-return-statements-to-match-array-objects
Returns ArrayObject
2 parents 92d6fdf + 6f8c2bc commit 5d0b979

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/Model/ContainerSummaryItem.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ public function setSizeRootFs(?int $sizeRootFs): self
303303
/**
304304
* User-defined key/value metadata.
305305
*
306-
* @return array<string, string>|null
306+
* @return \ArrayObject|null
307307
*/
308308
public function getLabels(): ?iterable
309309
{

src/Model/NodeSpec.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function setName(?string $name): self
6161
/**
6262
* User-defined key/value metadata.
6363
*
64-
* @return array<string, string>|null
64+
* @return \ArrayObject|null
6565
*/
6666
public function getLabels(): ?iterable
6767
{

src/Model/ServiceSpec.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public function setName(?string $name): self
8585
/**
8686
* User-defined key/value metadata.
8787
*
88-
* @return array<string, string>|null
88+
* @return \ArrayObject|null
8989
*/
9090
public function getLabels(): ?iterable
9191
{

src/Model/Volume.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ public function setStatus(?iterable $status): self
199199
/**
200200
* User-defined key/value metadata.
201201
*
202-
* @return array<string, string>|null
202+
* @return \ArrayObject|null
203203
*/
204204
public function getLabels(): ?iterable
205205
{
@@ -243,7 +243,7 @@ public function setScope(?string $scope): self
243243
/**
244244
* The driver specific options used when creating the volume.
245245
*
246-
* @return array<string, string>|null
246+
* @return \ArrayObject|null
247247
*/
248248
public function getOptions(): ?iterable
249249
{

0 commit comments

Comments
 (0)