/**
  * Retrieve a session payload from storage.
  *
  * @param  string  $id
  * @return array|null
  */
 public function retrieveSession($id)
 {
     return $this->cache->get($id);
 }