Files
expose/app/Server/Configuration.php
Marcel Pociot e5e53b8b68 wip
2020-04-22 12:32:29 +02:00

30 lines
442 B
PHP

<?php
namespace App\Server;
class Configuration
{
/** @var string */
protected $hostname;
/** @var int */
protected $port;
public function __construct(string $hostname, int $port)
{
$this->hostname = $hostname;
$this->port = $port;
}
public function hostname(): string
{
return $this->hostname;
}
public function port(): int
{
return $this->port;
}
}