$data * @param array $options An optional array of options to pass to the storage adapter. * @return void */ public function save(string $key, array $data, array $options = []): void; /** * Retrieves the data from the storage adapter, that was saved under the given key before. * If no data was saved under the given key, null is returned. * @param string $key The key to save the data under. This key is used to retrieve the data later. It can contain * any characters. * @param array $options An optional array of options to pass to the storage adapter. * @return array|null * @phpstan-return array|null */ public function load(string $key, array $options = []): ?array; }