Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
vendor
/
ankitpokhrel
/
tus-php
/
src
/
Cache
/
Editing: CacheFactory.php
<?php namespace TusPhp\Cache; class CacheFactory { /** * Make cache. * * @param string $type * * @static * * @return Cacheable */ public static function make(string $type = 'file'): Cacheable { switch ($type) { case 'redis': return new RedisStore(); case 'apcu': return new ApcuStore(); } return new FileStore(); } }
Save
Cancel