fix warning in tests

This commit is contained in:
Ralf Becker 2020-03-04 22:28:50 +01:00
parent 67e68f86f7
commit e360932bdf

View File

@ -14,7 +14,7 @@
namespace EGroupware\Api\Cache;
// fix warning in tests, if memcache extension not available
if (defined('MEMCACHE_COMPRESSED')) define('MEMCACHE_COMPRESSED', 2);
if (!defined('MEMCACHE_COMPRESSED')) define('MEMCACHE_COMPRESSED', 2);
/**
* Caching provider storing data in memcached via PHP's memcache extension