Laravel\Envoy\ConfigurationParser::getConfiguredServer PHP Метод

getConfiguredServer() защищенный Метод

Get the configured server from the SSH config.
protected getConfiguredServer ( string $host ) : string | null
$host string
Результат string | null
    protected function getConfiguredServer($host)
    {
        if ($config = $this->getSshConfig($this->getSystemUser())) {
            return $config->findConfiguredHost($host);
        }
    }