all-in-one/php/src/Container/ContainerVolume.php
Jean-Yves 496ec9ba17
update constructor
Signed-off-by: Jean-Yves <7360784+docjyJ@users.noreply.github.com>
2024-10-07 10:12:43 +02:00

12 lines
202 B
PHP

<?php
namespace AIO\Container;
class ContainerVolume {
public function __construct(
public string $name,
public string $mountPoint,
public bool $isWritable
) {
}
}