Skip to content
This repository was archived by the owner on Oct 26, 2019. It is now read-only.

Commit 6db2bbe

Browse files
author
Jeremy Leherpeur
committed
Add 1.40 api version
1 parent 6591301 commit 6db2bbe

File tree

119 files changed

+2768
-520
lines changed

Some content is hidden

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

119 files changed

+2768
-520
lines changed

docker-swagger.yaml

+322-35
Large diffs are not rendered by default.

src/Client.php

+135-126
Large diffs are not rendered by default.

src/ClientAsync.php

+134-125
Large diffs are not rendered by default.

src/Endpoint/BuildPrune.php

+36-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,28 @@
1212

1313
class BuildPrune extends \Jane\OpenApiRuntime\Client\BaseEndpoint implements \Jane\OpenApiRuntime\Client\AmpArtaxEndpoint, \Jane\OpenApiRuntime\Client\Psr7HttplugEndpoint
1414
{
15+
/**
16+
* @param array $queryParameters {
17+
*
18+
* @var int $keep-storage Amount of disk space in bytes to keep for cache
19+
* @var bool $all Remove all types of build cache
20+
* @var string $filters A JSON encoded value of the filters (a `map[string][]string`) to process on the list of build cache objects. Available filters:
21+
- `until=<duration>`: duration relative to daemon's time, during which build cache was not used, in Go's duration format (e.g., '24h')
22+
- `id=<id>`
23+
- `parent=<id>`
24+
- `type=<string>`
25+
- `description=<string>`
26+
- `inuse`
27+
- `shared`
28+
- `private`
29+
30+
* }
31+
*/
32+
public function __construct(array $queryParameters = [])
33+
{
34+
$this->queryParameters = $queryParameters;
35+
}
36+
1537
use \Jane\OpenApiRuntime\Client\AmpArtaxEndpointTrait, \Jane\OpenApiRuntime\Client\Psr7HttplugEndpointTrait;
1638

1739
public function getMethod(): string
@@ -34,12 +56,25 @@ public function getExtraHeaders(): array
3456
return ['Accept' => ['application/json']];
3557
}
3658

59+
protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver\OptionsResolver
60+
{
61+
$optionsResolver = parent::getQueryOptionsResolver();
62+
$optionsResolver->setDefined(['keep-storage', 'all', 'filters']);
63+
$optionsResolver->setRequired([]);
64+
$optionsResolver->setDefaults([]);
65+
$optionsResolver->setAllowedTypes('keep-storage', ['int']);
66+
$optionsResolver->setAllowedTypes('all', ['bool']);
67+
$optionsResolver->setAllowedTypes('filters', ['string']);
68+
69+
return $optionsResolver;
70+
}
71+
3772
/**
3873
* {@inheritdoc}
3974
*
4075
* @throws \Docker\API\Exception\BuildPruneInternalServerErrorException
4176
*
42-
* @return null|\Docker\API\Model\BuildPrunePostResponse200
77+
* @return \Docker\API\Model\BuildPrunePostResponse200|null
4378
*/
4479
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
4580
{

src/Endpoint/ConfigCreate.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function getExtraHeaders(): array
4949
* @throws \Docker\API\Exception\ConfigCreateInternalServerErrorException
5050
* @throws \Docker\API\Exception\ConfigCreateServiceUnavailableException
5151
*
52-
* @return null|\Docker\API\Model\IdResponse
52+
* @return \Docker\API\Model\IdResponse|null
5353
*/
5454
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
5555
{

src/Endpoint/ConfigInspect.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function getExtraHeaders(): array
5151
* @throws \Docker\API\Exception\ConfigInspectInternalServerErrorException
5252
* @throws \Docker\API\Exception\ConfigInspectServiceUnavailableException
5353
*
54-
* @return null|\Docker\API\Model\Config
54+
* @return \Docker\API\Model\Config|null
5555
*/
5656
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
5757
{

src/Endpoint/ConfigList.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver
6868
* @throws \Docker\API\Exception\ConfigListInternalServerErrorException
6969
* @throws \Docker\API\Exception\ConfigListServiceUnavailableException
7070
*
71-
* @return null|\Docker\API\Model\Config[]
71+
* @return \Docker\API\Model\Config[]|null
7272
*/
7373
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
7474
{

src/Endpoint/ContainerAttach.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class ContainerAttach extends \Jane\OpenApiRuntime\Client\BaseEndpoint implement
9696
* @param array $queryParameters {
9797
*
9898
* @var string $detachKeys Override the key sequence for detaching a container.Format is a single character `[a-Z]` or `ctrl-<value>` where `<value>` is one of: `a-z`, `@`, `^`, `[`, `,` or `_`.
99-
* @var bool $logs replay previous logs from the container
99+
* @var bool $logs Replay previous logs from the container.
100100
101101
* @var bool $stream Stream attached streams from the time the request was made onwards
102102
* @var bool $stdin Attach to `stdin`

src/Endpoint/ContainerChanges.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function getExtraHeaders(): array
5858
* @throws \Docker\API\Exception\ContainerChangesNotFoundException
5959
* @throws \Docker\API\Exception\ContainerChangesInternalServerErrorException
6060
*
61-
* @return null|\Docker\API\Model\ContainersIdChangesGetResponse200Item[]
61+
* @return \Docker\API\Model\ContainersIdChangesGetResponse200Item[]|null
6262
*/
6363
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
6464
{

src/Endpoint/ContainerCreate.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver
6666
* @throws \Docker\API\Exception\ContainerCreateConflictException
6767
* @throws \Docker\API\Exception\ContainerCreateInternalServerErrorException
6868
*
69-
* @return null|\Docker\API\Model\ContainersCreatePostResponse201
69+
* @return \Docker\API\Model\ContainersCreatePostResponse201|null
7070
*/
7171
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
7272
{

src/Endpoint/ContainerExec.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function getExtraHeaders(): array
5555
* @throws \Docker\API\Exception\ContainerExecConflictException
5656
* @throws \Docker\API\Exception\ContainerExecInternalServerErrorException
5757
*
58-
* @return null|\Docker\API\Model\IdResponse
58+
* @return \Docker\API\Model\IdResponse|null
5959
*/
6060
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
6161
{

src/Endpoint/ContainerInspect.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver
6868
* @throws \Docker\API\Exception\ContainerInspectNotFoundException
6969
* @throws \Docker\API\Exception\ContainerInspectInternalServerErrorException
7070
*
71-
* @return null|\Docker\API\Model\ContainersIdJsonGetResponse200
71+
* @return \Docker\API\Model\ContainersIdJsonGetResponse200|null
7272
*/
7373
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
7474
{

src/Endpoint/ContainerKill.php

+4
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver
6666
* {@inheritdoc}
6767
*
6868
* @throws \Docker\API\Exception\ContainerKillNotFoundException
69+
* @throws \Docker\API\Exception\ContainerKillConflictException
6970
* @throws \Docker\API\Exception\ContainerKillInternalServerErrorException
7071
*/
7172
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
@@ -76,6 +77,9 @@ protected function transformResponseBody(string $body, int $status, \Symfony\Com
7677
if (404 === $status) {
7778
throw new \Docker\API\Exception\ContainerKillNotFoundException($serializer->deserialize($body, 'Docker\\API\\Model\\ErrorResponse', 'json'));
7879
}
80+
if (409 === $status) {
81+
throw new \Docker\API\Exception\ContainerKillConflictException($serializer->deserialize($body, 'Docker\\API\\Model\\ErrorResponse', 'json'));
82+
}
7983
if (500 === $status) {
8084
throw new \Docker\API\Exception\ContainerKillInternalServerErrorException($serializer->deserialize($body, 'Docker\\API\\Model\\ErrorResponse', 'json'));
8185
}

src/Endpoint/ContainerList.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver
9191
* @throws \Docker\API\Exception\ContainerListBadRequestException
9292
* @throws \Docker\API\Exception\ContainerListInternalServerErrorException
9393
*
94-
* @return null|\Docker\API\Model\ContainerSummaryItem[]
94+
* @return \Docker\API\Model\ContainerSummaryItem[]|null
9595
*/
9696
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
9797
{

src/Endpoint/ContainerLogs.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class ContainerLogs extends \Jane\OpenApiRuntime\Client\BaseEndpoint implements
2323
* @param string $id ID or name of the container
2424
* @param array $queryParameters {
2525
*
26-
* @var bool $follow return the logs as a stream
26+
* @var bool $follow Return the logs as a stream.
2727
2828
* @var bool $stdout Return logs from `stdout`
2929
* @var bool $stderr Return logs from `stderr`

src/Endpoint/ContainerPrune.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class ContainerPrune extends \Jane\OpenApiRuntime\Client\BaseEndpoint implements
1515
/**
1616
* @param array $queryParameters {
1717
*
18-
* @var string $filters filters to process on the prune list, encoded as JSON (a `map[string][]string`)
18+
* @var string $filters Filters to process on the prune list, encoded as JSON (a `map[string][]string`).
1919
2020
Available filters:
2121
- `until=<timestamp>` Prune containers created before this timestamp. The `<timestamp>` can be Unix timestamps, date formatted timestamps, or Go duration strings (e.g. `10m`, `1h30m`) computed relative to the daemon machine’s time.
@@ -66,7 +66,7 @@ protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver
6666
*
6767
* @throws \Docker\API\Exception\ContainerPruneInternalServerErrorException
6868
*
69-
* @return null|\Docker\API\Model\ContainersPrunePostResponse200
69+
* @return \Docker\API\Model\ContainersPrunePostResponse200|null
7070
*/
7171
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
7272
{

src/Endpoint/ContainerStart.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver
6666
* @throws \Docker\API\Exception\ContainerStartNotFoundException
6767
* @throws \Docker\API\Exception\ContainerStartInternalServerErrorException
6868
*
69-
* @return null|\Docker\API\Model\ErrorResponse
69+
* @return \Docker\API\Model\ErrorResponse|null
7070
*/
7171
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
7272
{

src/Endpoint/ContainerStats.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ class ContainerStats extends \Jane\OpenApiRuntime\Client\BaseEndpoint implements
1818
* This endpoint returns a live stream of a container’s resource usage.
1919
statistics.
2020
21-
The `precpu_stats` is the CPU statistic of last read, which is used
22-
for calculating the CPU usage percentage. It is not the same as the
23-
`cpu_stats` field.
21+
The `precpu_stats` is the CPU statistic of the *previous* read, and is
22+
used to calculate the CPU usage percentage. It is not an exact copy
23+
of the `cpu_stats` field.
2424
2525
If either `precpu_stats.online_cpus` or `cpu_stats.online_cpus` is
2626
nil then for compatibility with older daemons the length of the

src/Endpoint/ContainerStop.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver
6666
* @throws \Docker\API\Exception\ContainerStopNotFoundException
6767
* @throws \Docker\API\Exception\ContainerStopInternalServerErrorException
6868
*
69-
* @return null|\Docker\API\Model\ErrorResponse
69+
* @return \Docker\API\Model\ErrorResponse|null
7070
*/
7171
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
7272
{

src/Endpoint/ContainerTop.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver
6868
* @throws \Docker\API\Exception\ContainerTopNotFoundException
6969
* @throws \Docker\API\Exception\ContainerTopInternalServerErrorException
7070
*
71-
* @return null|\Docker\API\Model\ContainersIdTopGetResponse200
71+
* @return \Docker\API\Model\ContainersIdTopGetResponse200|null
7272
*/
7373
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
7474
{

src/Endpoint/ContainerUpdate.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function getExtraHeaders(): array
5454
* @throws \Docker\API\Exception\ContainerUpdateNotFoundException
5555
* @throws \Docker\API\Exception\ContainerUpdateInternalServerErrorException
5656
*
57-
* @return null|\Docker\API\Model\ContainersIdUpdatePostResponse200
57+
* @return \Docker\API\Model\ContainersIdUpdatePostResponse200|null
5858
*/
5959
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
6060
{

src/Endpoint/ContainerWait.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver
6868
* @throws \Docker\API\Exception\ContainerWaitNotFoundException
6969
* @throws \Docker\API\Exception\ContainerWaitInternalServerErrorException
7070
*
71-
* @return null|\Docker\API\Model\ContainersIdWaitPostResponse200
71+
* @return \Docker\API\Model\ContainersIdWaitPostResponse200|null
7272
*/
7373
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
7474
{

src/Endpoint/DistributionInspect.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function getExtraHeaders(): array
5252
* @throws \Docker\API\Exception\DistributionInspectUnauthorizedException
5353
* @throws \Docker\API\Exception\DistributionInspectInternalServerErrorException
5454
*
55-
* @return null|\Docker\API\Model\DistributionNameJsonGetResponse200
55+
* @return \Docker\API\Model\DistributionNameJsonGetResponse200|null
5656
*/
5757
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
5858
{

src/Endpoint/ExecInspect.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function getExtraHeaders(): array
5252
* @throws \Docker\API\Exception\ExecInspectNotFoundException
5353
* @throws \Docker\API\Exception\ExecInspectInternalServerErrorException
5454
*
55-
* @return null|\Docker\API\Model\ExecIdJsonGetResponse200
55+
* @return \Docker\API\Model\ExecIdJsonGetResponse200|null
5656
*/
5757
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
5858
{

src/Endpoint/GetPluginPrivileges.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver
6161
*
6262
* @throws \Docker\API\Exception\GetPluginPrivilegesInternalServerErrorException
6363
*
64-
* @return null|\Docker\API\Model\PluginsPrivilegesGetResponse200Item[]
64+
* @return \Docker\API\Model\PluginsPrivilegesGetResponse200Item[]|null
6565
*/
6666
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
6767
{

src/Endpoint/ImageBuild.php

+7-4
Original file line numberDiff line numberDiff line change
@@ -41,18 +41,20 @@ class ImageBuild extends \Jane\OpenApiRuntime\Client\BaseEndpoint implements \Ja
4141
* @var string $cpusetcpus CPUs in which to allow execution (e.g., `0-3`, `0,1`).
4242
* @var int $cpuperiod the length of a CPU period in microseconds
4343
* @var int $cpuquota microseconds of CPU time that the container can get in a CPU period
44-
* @var string $buildargs JSON map of string pairs for build-time variables. Users pass these values at build-time. Docker uses the buildargs as the environment context for commands run via the `Dockerfile` RUN instruction, or for variable expansion in other `Dockerfile` instructions. This is not meant for passing secret values. [Read more about the buildargs instruction.](https://docs.docker.com/engine/reference/builder/#arg)
44+
* @var string $buildargs JSON map of string pairs for build-time variables. Users pass these values at build-time. Docker uses the buildargs as the environment context for commands run via the `Dockerfile` RUN instruction, or for variable expansion in other `Dockerfile` instructions. This is not meant for passing secret values.
45+
4546
* @var int $shmsize Size of `/dev/shm` in bytes. The size must be greater than 0. If omitted the system uses 64MB.
4647
* @var bool $squash Squash the resulting images layers into a single layer. *(Experimental release only.)*
4748
* @var string $labels arbitrary key/value labels to set on the image, as a JSON map of string pairs
4849
* @var string $networkmode Sets the networking mode for the run commands during build. Supported standard values are: `bridge`, `host`, `none`, and `container:<name|id>`. Any other value is taken as a custom network's name to which this container should connect to.
4950
* @var string $platform Platform in the format os[/arch[/variant]]
51+
* @var string $target Target build stage
5052
* }
5153
*
5254
* @param array $headerParameters {
5355
*
5456
* @var string $Content-type
55-
* @var string $X-Registry-Config This is a base64-encoded JSON object with auth configurations for multiple registries that a build may refer to
57+
* @var string $X-Registry-Config This is a base64-encoded JSON object with auth configurations for multiple registries that a build may refer to.
5658
5759
The key is a registry URL, and the value is an auth configuration object, [as described in the authentication section](#section/Authentication). For example:
5860
@@ -105,9 +107,9 @@ public function getExtraHeaders(): array
105107
protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver\OptionsResolver
106108
{
107109
$optionsResolver = parent::getQueryOptionsResolver();
108-
$optionsResolver->setDefined(['dockerfile', 't', 'extrahosts', 'remote', 'q', 'nocache', 'cachefrom', 'pull', 'rm', 'forcerm', 'memory', 'memswap', 'cpushares', 'cpusetcpus', 'cpuperiod', 'cpuquota', 'buildargs', 'shmsize', 'squash', 'labels', 'networkmode', 'platform']);
110+
$optionsResolver->setDefined(['dockerfile', 't', 'extrahosts', 'remote', 'q', 'nocache', 'cachefrom', 'pull', 'rm', 'forcerm', 'memory', 'memswap', 'cpushares', 'cpusetcpus', 'cpuperiod', 'cpuquota', 'buildargs', 'shmsize', 'squash', 'labels', 'networkmode', 'platform', 'target']);
109111
$optionsResolver->setRequired([]);
110-
$optionsResolver->setDefaults(['dockerfile' => 'Dockerfile', 'q' => false, 'nocache' => false, 'rm' => true, 'forcerm' => false, 'platform' => '']);
112+
$optionsResolver->setDefaults(['dockerfile' => 'Dockerfile', 'q' => false, 'nocache' => false, 'rm' => true, 'forcerm' => false, 'platform' => '', 'target' => '']);
111113
$optionsResolver->setAllowedTypes('dockerfile', ['string']);
112114
$optionsResolver->setAllowedTypes('t', ['string']);
113115
$optionsResolver->setAllowedTypes('extrahosts', ['string']);
@@ -130,6 +132,7 @@ protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver
130132
$optionsResolver->setAllowedTypes('labels', ['string']);
131133
$optionsResolver->setAllowedTypes('networkmode', ['string']);
132134
$optionsResolver->setAllowedTypes('platform', ['string']);
135+
$optionsResolver->setAllowedTypes('target', ['string']);
133136

134137
return $optionsResolver;
135138
}

src/Endpoint/ImageCommit.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver
7676
* @throws \Docker\API\Exception\ImageCommitNotFoundException
7777
* @throws \Docker\API\Exception\ImageCommitInternalServerErrorException
7878
*
79-
* @return null|\Docker\API\Model\IdResponse
79+
* @return \Docker\API\Model\IdResponse|null
8080
*/
8181
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
8282
{

src/Endpoint/ImageDelete.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver
7676
* @throws \Docker\API\Exception\ImageDeleteConflictException
7777
* @throws \Docker\API\Exception\ImageDeleteInternalServerErrorException
7878
*
79-
* @return null|\Docker\API\Model\ImageDeleteResponseItem[]
79+
* @return \Docker\API\Model\ImageDeleteResponseItem[]|null
8080
*/
8181
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
8282
{

src/Endpoint/ImageHistory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function getExtraHeaders(): array
5252
* @throws \Docker\API\Exception\ImageHistoryNotFoundException
5353
* @throws \Docker\API\Exception\ImageHistoryInternalServerErrorException
5454
*
55-
* @return null|\Docker\API\Model\ImagesNameHistoryGetResponse200Item[]
55+
* @return \Docker\API\Model\ImagesNameHistoryGetResponse200Item[]|null
5656
*/
5757
protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer)
5858
{

0 commit comments

Comments
 (0)