DragonBe\Vies\HeartBeat::__construct PHP Method

__construct() public method

public __construct ( string | null $host = null, integer $port = 80 )
$host string | null
$port integer
    function __construct($host = null, $port = 80)
    {
        if (null !== $host) {
            $this->setHost($host);
        }
        $this->setPort($port);
    }