all = $all; } /** * @return bool */ public function getAll() { return $this->all; } /** * @param array[] */ public function setKeys($keys) { $this->keys = $keys; } /** * @return array[] */ public function getKeys() { return $this->keys; } /** * @param KeyRange[] */ public function setRanges($ranges) { $this->ranges = $ranges; } /** * @return KeyRange[] */ public function getRanges() { return $this->ranges; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(KeySet::class, 'Google_Service_Spanner_KeySet');