storage = $storage; } /** * @param KeyInterface $key */ public function persist(KeyInterface $key) { $this->storage->persist($key); } /** * @return KeyInterface */ public function load($id) { return $this->storage->load($id); } }