data[$key] = $columns; } public function get(string $key): array { if (isset($this->data[$key])) { return $this->data[$key]; } return []; } }