/**
  * Store multiple items in the cache for a given number of minutes.
  *
  * @param  array $values
  * @param  int $minutes
  * @return void
  */
 public function putMany(array $values, $minutes)
 {
     $this->sendTagsToStore();
     parent::putMany($values, $minutes);
 }