Ejemplo n.º 1
0
 public static function cacheTags(BasicModel $model)
 {
     $tags = array('QueryCache-table-' . $model->getTableName());
     if ($model->cache_tags) {
         $tags = array_merge($tags, $model->cache_tags);
     }
     return $tags;
 }