]> git.mxchange.org Git - friendica.git/blob - src/Core/Cache/Type.php
Merge pull request #8130 from nupplaphil/task/di_pconfig
[friendica.git] / src / Core / Cache / Type.php
1 <?php
2
3 namespace Friendica\Core\Cache;
4
5 /**
6  * Enumeration for cache types
7  */
8 abstract class Type
9 {
10         const APCU      = 'apcu';
11         const REDIS     = 'redis';
12         const ARRAY     = 'array';
13         const MEMCACHE  = 'memcache';
14         const DATABASE  = 'database';
15         const MEMCACHED = 'memcached';
16 }