target = "ip"; $object->value = $value; array_push($this->configs, $object); } public function addIPRange(string $value) { $object = new \stdClass(); $object->target = "ip_range"; $object->value = $value; array_push($this->configs, $object); } public function getArray(): array { return $this->configs; } }