Beberlei\Metrics\Collector\StatsD::__construct PHP Method

__construct() public method

public __construct ( string $host = 'localhost', string $port = '8125', string $prefix = '' )
$host string
$port string
$prefix string
    public function __construct($host = 'localhost', $port = '8125', $prefix = '')
    {
        $this->host = $host;
        $this->port = $port;
        $this->prefix = $prefix;
        $this->data = array();
    }