error = $error; $this->data = $data; } /** * @return array */ public function getContent(): array { return [$this->error, $this->data]; } /** * @return mixed */ public function getError() { return $this->error; } /** * @return mixed */ public function getData() { return $this->data; } }