store = $store; } /** * @param string $key * @return mixed */ public function get($key) { return $this->store->get($key); } /** * @param string $key * @param mixed|null $value */ public function put($key, $value) { $this->store->put($key, $value); } }