for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dazzle\SSH;
class SSH2Config implements SSH2ConfigInterface
{
/**
* @var string
*/
protected $host;
* @var int
protected $port;
* @var mixed
protected $methods;
* @param string $host
* @param int $port
* @param mixed $methods
public function __construct($host = 'localhost', $port = 22, $methods = [])
$this->host = $host;
$this->port = $port;
$this->methods = $methods;
}
* @override
* @inheritDoc
public function getHost()
return $this->host;
public function getPort()
return $this->port;
public function getMethods()
return $this->methods;