Completed
Pull Request — master (#147)
by Joel
13:14
created
generated/Model/ContainerConfig.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
     }
267 267
 
268 268
     /**
269
-     * @param string[] $labels
269
+     * @param \ArrayObject $labels
270 270
      *
271 271
      * @return self
272 272
      */
@@ -646,7 +646,7 @@  discard block
 block discarded – undo
646 646
     }
647 647
 
648 648
     /**
649
-     * @param mixed[] $exposedPorts
649
+     * @param \ArrayObject $exposedPorts
650 650
      *
651 651
      * @return self
652 652
      */
Please login to merge, or discard this patch.
generated/Model/HostConfig.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
     }
171 171
 
172 172
     /**
173
-     * @param string[] $lxcConf
173
+     * @param \ArrayObject $lxcConf
174 174
      *
175 175
      * @return self
176 176
      */
@@ -370,7 +370,7 @@  discard block
 block discarded – undo
370 370
     }
371 371
 
372 372
     /**
373
-     * @param PortBinding[] $portBindings
373
+     * @param \ArrayObject $portBindings
374 374
      *
375 375
      * @return self
376 376
      */
Please login to merge, or discard this patch.
generated/Model/ImageItem.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@
 block discarded – undo
166 166
     }
167 167
 
168 168
     /**
169
-     * @param string[] $labels
169
+     * @param \ArrayObject $labels
170 170
      *
171 171
      * @return self
172 172
      */
Please login to merge, or discard this patch.
generated/Model/LogConfig.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     }
43 43
 
44 44
     /**
45
-     * @param string[] $config
45
+     * @param \ArrayObject $config
46 46
      *
47 47
      * @return self
48 48
      */
Please login to merge, or discard this patch.
generated/Model/Network.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     }
143 143
 
144 144
     /**
145
-     * @param NetworkContainer[] $containers
145
+     * @param \ArrayObject $containers
146 146
      *
147 147
      * @return self
148 148
      */
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
     }
163 163
 
164 164
     /**
165
-     * @param string[] $options
165
+     * @param \ArrayObject $options
166 166
      *
167 167
      * @return self
168 168
      */
Please login to merge, or discard this patch.
generated/Model/RegistryConfig.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     }
23 23
 
24 24
     /**
25
-     * @param Registry[] $indexConfigs
25
+     * @param \ArrayObject $indexConfigs
26 26
      *
27 27
      * @return self
28 28
      */
Please login to merge, or discard this patch.
generated/Model/VolumeConfig.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
     }
67 67
 
68 68
     /**
69
-     * @param string[] $driverOpts
69
+     * @param \ArrayObject $driverOpts
70 70
      *
71 71
      * @return self
72 72
      */
Please login to merge, or discard this patch.
generated/Resource/ContainerResource.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
      * Get stdout and stderr logs from the container id. Note: This endpoint works only for containers with json-file logging driver.
135 135
      *
136 136
      * @param string $id         The container id or name
137
-     * @param array  $parameters List of parameters
137
+     * @param boolean  $parameters List of parameters
138 138
      * 
139 139
      *     (bool)follow: 1/True/true or 0/False/false, return stream. Default false.
140 140
      *     (bool)stdout: 1/True/true or 0/False/false, show stdout log. Default false.
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
      * Stop the container id.
302 302
      *
303 303
      * @param string $id         The container id or name
304
-     * @param array  $parameters List of parameters
304
+     * @param integer  $parameters List of parameters
305 305
      * 
306 306
      *     (int)t: number of seconds to wait before killing the container
307 307
      * @param string $fetch Fetch mode (object or response)
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
      * Send a posix signal to a container.
354 354
      *
355 355
      * @param string $id         The container id or name
356
-     * @param array  $parameters List of parameters
356
+     * @param string  $parameters List of parameters
357 357
      * @param string $fetch      Fetch mode (object or response)
358 358
      *
359 359
      * @return \Psr\Http\Message\ResponseInterface
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
      * Rename the container id to a new_name.
377 377
      *
378 378
      * @param string $id         The container id or name
379
-     * @param array  $parameters List of parameters
379
+     * @param string  $parameters List of parameters
380 380
      * 
381 381
      *     (string)name: New name for the container
382 382
      * @param string $fetch Fetch mode (object or response)
@@ -448,7 +448,7 @@  discard block
 block discarded – undo
448 448
      * Attach to the container id.
449 449
      *
450 450
      * @param string $id         The container id or name
451
-     * @param array  $parameters List of parameters
451
+     * @param \Closure  $parameters List of parameters
452 452
      * 
453 453
      *     (string)logs: 1/True/true or 0/False/false, return logs. Default false
454 454
      *     (string)stream: 1/True/true or 0/False/false, return stream. Default false
@@ -482,7 +482,7 @@  discard block
 block discarded – undo
482 482
      * Block until container id stops, then returns the exit code.
483 483
      *
484 484
      * @param string $id         The container id or name
485
-     * @param array  $parameters List of parameters
485
+     * @param integer  $parameters List of parameters
486 486
      * @param string $fetch      Fetch mode (object or response)
487 487
      *
488 488
      * @return \Psr\Http\Message\ResponseInterface|\Docker\API\Model\ContainerWait
@@ -510,7 +510,7 @@  discard block
 block discarded – undo
510 510
      * Remove the container id from the filesystem.
511 511
      *
512 512
      * @param string $id         The container id or name
513
-     * @param array  $parameters List of parameters
513
+     * @param boolean  $parameters List of parameters
514 514
      * 
515 515
      *     (string)v: 1/True/true or 0/False/false, Remove the volumes associated to the container. Default false.
516 516
      *     (string)force: 1/True/true or 0/False/false, Kill then remove the container. Default false.
Please login to merge, or discard this patch.