diff --git a/src/Adapter/Udp/Options.php b/src/Adapter/Udp/Options.php index f754829..273786d 100644 --- a/src/Adapter/Udp/Options.php +++ b/src/Adapter/Udp/Options.php @@ -3,16 +3,9 @@ class Options { - private $host; - private $port; - private $tags; - - public function __construct() - { - $this->setHost("localhost"); - $this->setTags([]); - $this->setPort(4444); - } + private $host = 'localhost'; + private $port = 4444; + private $tags = []; public function getPort() {