| 1 | <?php |
||
| 13 | class DumperFactory extends AbstractFactory |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @param string $volume |
||
| 17 | * @param string $path |
||
| 18 | * @param string $engine |
||
| 19 | * @param string $version |
||
| 20 | * |
||
| 21 | * @return \Nexus\Dumper\Business\Dumper |
||
| 22 | * @throws \Xervice\Config\Exception\ConfigNotFound |
||
| 23 | */ |
||
| 24 | public function createDumper(string $volume, string $path, string $engine, string $version) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return array |
||
| 42 | */ |
||
| 43 | public function getCommandList() |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @return \Nexus\Shell\ShellFacade |
||
| 50 | */ |
||
| 51 | public function getShellFacade() |
||
| 55 | |||
| 56 | /** |
||
| 57 | * @return \Nexus\DockerClient\DockerClientFacade |
||
| 58 | */ |
||
| 59 | public function getDockerFacade() |
||
| 63 | } |