host = $host; $this->port = $port; $this->isForce = $isForce; } /** * {@inheritDoc} */ public function toArray(): array { $arguments = [self::KEYWORD, $this->host, $this->port]; if ($this->isForce) { $arguments[] = self::FORCE_KEYWORD; } return $arguments; } }