1 | <?php |
||
12 | class ContainerVolumeEntity |
||
13 | { |
||
14 | /** |
||
15 | * @param array|object $mJobData |
||
16 | * @throws \InvalidArgumentException |
||
17 | */ |
||
18 | 5 | public function __construct($mJobData = []) |
|
35 | |||
36 | /** @var string */ |
||
37 | public $containerPath = ''; |
||
38 | |||
39 | /** @var string */ |
||
40 | public $hostPath = ''; |
||
41 | |||
42 | /** |
||
43 | * @var string |
||
44 | * |
||
45 | * read-write and read-only. |
||
46 | * val RW, RO = Value |
||
47 | */ |
||
48 | public $mode = ''; |
||
49 | } |