/**
  * Returns html content from the cache
  *
  * @return string
  */
 public function read()
 {
     if ($this->storage !== null) {
         return $this->storage->read();
     }
     return false;
 }