/**
  * Find all eloquent models and bootstrap them for cache
  *
  * @return void
  */
 protected function loadAllEloquentModels()
 {
     foreach ($this->finder->find() as $eloquentClass) {
         $this->info("Loaded : [" . $eloquentClass . "]");
         FasterModel::cacheMutatedAttributes($eloquentClass);
     }
 }