public function skippedCache()
 {
     if ($this->skipCacheCheck === true) {
         return false;
     }
     return parent::skippedCache();
 }
 /**
  * Register any other events for your application.
  *
  * @return void
  */
 public function boot()
 {
     $this->mergeConfigFrom(__DIR__ . '/../config/repositories.php', 'repositories');
     // Get caching
     AbstractRepository::setCacheInstance($this->app['cache']);
 }