Ejemplo n.º 1
0
 public function __construct(StoreInterface $store)
 {
     $this->table = 'cache_flags';
     $this->sleep = 3;
     //        $this->debug = Config::get('app.debug');
     $this->debug = true;
     parent::__construct($store);
 }
Ejemplo n.º 2
0
 /**
  * Create a new tagged cache instance.
  *
  * @param  \Illuminate\Contracts\Cache\Store  $store
  * @param  \Illuminate\Cache\TagSet  $tags
  * @return void
  */
 public function __construct(Store $store, TagSet $tags)
 {
     parent::__construct($store);
     $this->tags = $tags;
 }