CacheFactory.php 282 B

123456789101112
  1. <?php
  2. namespace MGModule\DNSManager2\mgLibs\custom\cache;
  3. class CacheFactory {
  4. /** @return CacheInterface */
  5. public static function get($cache_name, $type = 'file') {
  6. if($type == 'file') {
  7. return new FileCache($cache_name);
  8. }
  9. }
  10. }