1
0
Fork 0

Added a lot of constants :-)

This commit is contained in:
Philipp Holzer 2023-07-26 23:02:09 +02:00
commit acf52a9783
Signed by: nupplaPhil
GPG key ID: 24A7501396EB5432
16 changed files with 51 additions and 65 deletions

View file

@ -21,7 +21,7 @@
namespace Friendica\Core\Lock\Enum;
use Friendica\Core\Cache\Enum\Type as CacheType;
use Friendica\Core\Cache\Type\DatabaseCache;
/**
* Enumeration for lock types
@ -30,6 +30,6 @@ use Friendica\Core\Cache\Enum\Type as CacheType;
*/
abstract class Type
{
const DATABASE = CacheType::DATABASE;
const DATABASE = DatabaseCache::NAME;
const SEMAPHORE = 'semaphore';
}