]> git.mxchange.org Git - friendica.git/blob - src/Core/Lock/Type.php
Remove duplicate profile_uid key in App->profile array
[friendica.git] / src / Core / Lock / Type.php
1 <?php
2
3 namespace Friendica\Core\Lock;
4
5 use Friendica\Core\Cache\Type as CacheType;
6
7 /**
8  * Enumeration for lock types
9  *
10  * There's no "Cache" lock type, because the type depends on the concrete, used cache
11  */
12 abstract class Type
13 {
14         const DATABASE  = CacheType::DATABASE;
15         const SEMAPHORE = 'semaphore';
16 }