for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Nexus\Dumper;
use Xervice\Core\Config\AbstractConfig;
class DumperConfig extends AbstractConfig
{
const SSH_HOST = 'ssh.host';
const SSH_USER = 'ssh.user';
const PROJECT_NAME = 'project.name';
const IMAGE_NAME = 'image.name';
const DUMP_DIRECTORY = 'dump.directory';
/**
* @return string
* @throws \Xervice\Config\Exception\ConfigNotFound
*/
public function getSshHost()
return $this->get(self::SSH_HOST);
}
public function getSshUser()
return $this->get(self::SSH_USER);
public function getProject()
return $this->get(self::PROJECT_NAME);
public function getImageName()
return $this->get(self::IMAGE_NAME);
public function getDumpDirectory()
return $this->get(self::DUMP_DIRECTORY);