results = $results; $this->query = $query; } /** * @return array */ public function getResults() { return $this->results; } /** * @param array $results * @return $this */ public function setResults($results) { $this->results = $results; return $this; } /** * @return \Civi\Api4\Query\Api4SelectQuery */ public function getQuery() { return $this->query; } /** * @param \Civi\Api4\Query\Api4SelectQuery $query * @return $this */ public function setQuery($query) { $this->query = $query; return $this; } }