]> git.mxchange.org Git - friendica.git/blob - tests/src/Core/Lock/SemaphoreLockDriverTest.php
Merge pull request #5730 from nupplaphil/friendica-5716
[friendica.git] / tests / src / Core / Lock / SemaphoreLockDriverTest.php
1 <?php
2
3 namespace Friendica\Test\src\Core\Lock;
4
5 use Friendica\Core\Lock\SemaphoreLockDriver;
6
7 class SemaphoreLockDriverTest extends LockTest
8 {
9         protected function getInstance()
10         {
11                 return new SemaphoreLockDriver();
12         }
13
14         function testLockTTL()
15         {
16                 // Semaphore doesn't work with TTL
17                 return true;
18         }
19 }