/**
  * Fetch the block for a given key.
  *
  * @param mixed $key
  *
  * @return mixed
  */
 public function fetchBlock($key)
 {
     $output = $this->cacheStrategy->fetchBlock($key);
     $this->profilerExtension->addFetchBlock($key, $output);
     return $output;
 }