mirror of
https://github.com/friendica/friendica
synced 2025-02-25 21:18:13 +00:00
14 lines
221 B
PHP
14 lines
221 B
PHP
|
<?php
|
||
|
|
||
|
namespace Friendica\Test\src\Core\Lock;
|
||
|
|
||
|
|
||
|
use Friendica\Core\Lock\SemaphoreLockDriver;
|
||
|
|
||
|
class SemaphoreLockDriverTest extends LockTest
|
||
|
{
|
||
|
protected function getInstance()
|
||
|
{
|
||
|
return new SemaphoreLockDriver();
|
||
|
}
|
||
|
}
|