| 1 | <?php |
||
| 9 | class DumperConfig extends AbstractConfig |
||
| 10 | { |
||
| 11 | const SSH_HOST = 'ssh.host'; |
||
| 12 | |||
| 13 | const SSH_USER = 'ssh.user'; |
||
| 14 | |||
| 15 | const PROJECT_NAME = 'project.name'; |
||
| 16 | |||
| 17 | const IMAGE_NAME = 'image.name'; |
||
| 18 | |||
| 19 | const DUMP_DIRECTORY = 'dump.directory'; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @return string |
||
| 23 | * @throws \Xervice\Config\Exception\ConfigNotFound |
||
| 24 | */ |
||
| 25 | public function getSshHost() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return string |
||
| 32 | * @throws \Xervice\Config\Exception\ConfigNotFound |
||
| 33 | */ |
||
| 34 | public function getSshUser() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return string |
||
| 41 | * @throws \Xervice\Config\Exception\ConfigNotFound |
||
| 42 | */ |
||
| 43 | public function getProject() |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @return string |
||
| 50 | * @throws \Xervice\Config\Exception\ConfigNotFound |
||
| 51 | */ |
||
| 52 | public function getImageName() |
||
| 56 | |||
| 57 | /** |
||
| 58 | * @return string |
||
| 59 | * @throws \Xervice\Config\Exception\ConfigNotFound |
||
| 60 | */ |
||
| 61 | public function getDumpDirectory() |
||
| 65 | } |