Example #1
0
 /**
  * Stores the assets in the cache for a set amount of time.
  *
  * @param  string  $assets
  * @return void
  */
 public function store($assets)
 {
     if (!$this->exists()) {
         C::put($this->name(), $assets, $this->time);
     }
 }