@@ -134,7 +134,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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. |