Skip to content

Commit 7e91d03

Browse files
committed
fix(client): update/generate jane client
1 parent 667f723 commit 7e91d03

File tree

247 files changed

+21163
-48168
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

247 files changed

+21163
-48168
lines changed

composer.lock

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generated/Model/ContainerConfig.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public function isInitialized($property): bool
136136
* entry point is reset to system default (i.e., the entry point used by
137137
* docker when there is no `ENTRYPOINT` instruction in the `Dockerfile`).
138138
*
139-
* @var list<string>
139+
* @var list<string>|null
140140
*/
141141
protected $entrypoint;
142142
/**
@@ -636,9 +636,9 @@ public function setWorkingDir(string $workingDir): self
636636
* entry point is reset to system default (i.e., the entry point used by
637637
* docker when there is no `ENTRYPOINT` instruction in the `Dockerfile`).
638638
*
639-
* @return list<string>
639+
* @return list<string>|null
640640
*/
641-
public function getEntrypoint(): array
641+
public function getEntrypoint(): ?array
642642
{
643643
return $this->entrypoint;
644644
}
@@ -650,11 +650,11 @@ public function getEntrypoint(): array
650650
* entry point is reset to system default (i.e., the entry point used by
651651
* docker when there is no `ENTRYPOINT` instruction in the `Dockerfile`).
652652
*
653-
* @param list<string> $entrypoint
653+
* @param list<string>|null $entrypoint
654654
*
655655
* @return self
656656
*/
657-
public function setEntrypoint(array $entrypoint): self
657+
public function setEntrypoint(?array $entrypoint): self
658658
{
659659
$this->initialized['entrypoint'] = true;
660660
$this->entrypoint = $entrypoint;

generated/Model/ContainersCreatePostBody.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public function isInitialized($property): bool
136136
* entry point is reset to system default (i.e., the entry point used by
137137
* docker when there is no `ENTRYPOINT` instruction in the `Dockerfile`).
138138
*
139-
* @var list<string>
139+
* @var list<string>|null
140140
*/
141141
protected $entrypoint;
142142
/**
@@ -651,9 +651,9 @@ public function setWorkingDir(string $workingDir): self
651651
* entry point is reset to system default (i.e., the entry point used by
652652
* docker when there is no `ENTRYPOINT` instruction in the `Dockerfile`).
653653
*
654-
* @return list<string>
654+
* @return list<string>|null
655655
*/
656-
public function getEntrypoint(): array
656+
public function getEntrypoint(): ?array
657657
{
658658
return $this->entrypoint;
659659
}
@@ -665,11 +665,11 @@ public function getEntrypoint(): array
665665
* entry point is reset to system default (i.e., the entry point used by
666666
* docker when there is no `ENTRYPOINT` instruction in the `Dockerfile`).
667667
*
668-
* @param list<string> $entrypoint
668+
* @param list<string>|null $entrypoint
669669
*
670670
* @return self
671671
*/
672-
public function setEntrypoint(array $entrypoint): self
672+
public function setEntrypoint(?array $entrypoint): self
673673
{
674674
$this->initialized['entrypoint'] = true;
675675
$this->entrypoint = $entrypoint;

generated/Model/HostConfig.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -571,14 +571,14 @@ public function isInitialized($property): bool
571571
* The list of paths to be masked inside the container (this overrides
572572
* the default set of paths).
573573
*
574-
* @var list<string>
574+
* @var list<string>|null
575575
*/
576576
protected $maskedPaths;
577577
/**
578578
* The list of paths to be set as read-only inside the container
579579
* (this overrides the default set of paths).
580580
*
581-
* @var list<string>
581+
* @var list<string>|null
582582
*/
583583
protected $readonlyPaths;
584584

@@ -2570,9 +2570,9 @@ public function setIsolation(string $isolation): self
25702570
* The list of paths to be masked inside the container (this overrides
25712571
* the default set of paths).
25722572
*
2573-
* @return list<string>
2573+
* @return list<string>|null
25742574
*/
2575-
public function getMaskedPaths(): array
2575+
public function getMaskedPaths(): ?array
25762576
{
25772577
return $this->maskedPaths;
25782578
}
@@ -2581,11 +2581,11 @@ public function getMaskedPaths(): array
25812581
* The list of paths to be masked inside the container (this overrides
25822582
* the default set of paths).
25832583
*
2584-
* @param list<string> $maskedPaths
2584+
* @param list<string>|null $maskedPaths
25852585
*
25862586
* @return self
25872587
*/
2588-
public function setMaskedPaths(array $maskedPaths): self
2588+
public function setMaskedPaths(?array $maskedPaths): self
25892589
{
25902590
$this->initialized['maskedPaths'] = true;
25912591
$this->maskedPaths = $maskedPaths;
@@ -2597,9 +2597,9 @@ public function setMaskedPaths(array $maskedPaths): self
25972597
* The list of paths to be set as read-only inside the container
25982598
* (this overrides the default set of paths).
25992599
*
2600-
* @return list<string>
2600+
* @return list<string>|null
26012601
*/
2602-
public function getReadonlyPaths(): array
2602+
public function getReadonlyPaths(): ?array
26032603
{
26042604
return $this->readonlyPaths;
26052605
}
@@ -2608,11 +2608,11 @@ public function getReadonlyPaths(): array
26082608
* The list of paths to be set as read-only inside the container
26092609
* (this overrides the default set of paths).
26102610
*
2611-
* @param list<string> $readonlyPaths
2611+
* @param list<string>|null $readonlyPaths
26122612
*
26132613
* @return self
26142614
*/
2615-
public function setReadonlyPaths(array $readonlyPaths): self
2615+
public function setReadonlyPaths(?array $readonlyPaths): self
26162616
{
26172617
$this->initialized['readonlyPaths'] = true;
26182618
$this->readonlyPaths = $readonlyPaths;

generated/Model/ImageConfig.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ public function isInitialized($property): bool
177177
* entry point is reset to system default (i.e., the entry point used by
178178
* docker when there is no `ENTRYPOINT` instruction in the `Dockerfile`).
179179
*
180-
* @var list<string>
180+
* @var list<string>|null
181181
*/
182182
protected $entrypoint;
183183
/**
@@ -772,9 +772,9 @@ public function setWorkingDir(string $workingDir): self
772772
* entry point is reset to system default (i.e., the entry point used by
773773
* docker when there is no `ENTRYPOINT` instruction in the `Dockerfile`).
774774
*
775-
* @return list<string>
775+
* @return list<string>|null
776776
*/
777-
public function getEntrypoint(): array
777+
public function getEntrypoint(): ?array
778778
{
779779
return $this->entrypoint;
780780
}
@@ -786,11 +786,11 @@ public function getEntrypoint(): array
786786
* entry point is reset to system default (i.e., the entry point used by
787787
* docker when there is no `ENTRYPOINT` instruction in the `Dockerfile`).
788788
*
789-
* @param list<string> $entrypoint
789+
* @param list<string>|null $entrypoint
790790
*
791791
* @return self
792792
*/
793-
public function setEntrypoint(array $entrypoint): self
793+
public function setEntrypoint(?array $entrypoint): self
794794
{
795795
$this->initialized['entrypoint'] = true;
796796
$this->entrypoint = $entrypoint;

generated/Model/PluginConfig.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function isInitialized($property): bool
3838
*/
3939
protected $interface;
4040
/**
41-
* @var list<string>
41+
* @var list<string>|null
4242
*/
4343
protected $entrypoint;
4444
/**
@@ -179,19 +179,19 @@ public function setInterface(PluginConfigInterface $interface): self
179179
}
180180

181181
/**
182-
* @return list<string>
182+
* @return list<string>|null
183183
*/
184-
public function getEntrypoint(): array
184+
public function getEntrypoint(): ?array
185185
{
186186
return $this->entrypoint;
187187
}
188188

189189
/**
190-
* @param list<string> $entrypoint
190+
* @param list<string>|null $entrypoint
191191
*
192192
* @return self
193193
*/
194-
public function setEntrypoint(array $entrypoint): self
194+
public function setEntrypoint(?array $entrypoint): self
195195
{
196196
$this->initialized['entrypoint'] = true;
197197
$this->entrypoint = $entrypoint;

0 commit comments

Comments
 (0)