X-Git-Url: https://git.cweiske.de/shpub.git/blobdiff_plain/225b3ebc519d651dd2fda1b000483961352f2e84..97a82467ccfaef7c809b366dbc84ad42afd6f495:/src/shpub/Command/Server.php diff --git a/src/shpub/Command/Server.php b/src/shpub/Command/Server.php new file mode 100644 index 0000000..59843d4 --- /dev/null +++ b/src/shpub/Command/Server.php @@ -0,0 +1,22 @@ +cfg = $cfg; + } + + public function run($verbose) + { + foreach ($this->cfg->hosts as $key => $host) { + echo $key . "\n"; + if ($verbose) { + echo ' URL: ' . $host->server . "\n"; + echo ' User: ' . $host->user . "\n"; + } + } + } +} +?>