mirror of
https://github.com/friendica/friendica
synced 2025-02-25 16:38:14 +00:00
16 lines
265 B
PHP
16 lines
265 B
PHP
|
<?php
|
||
|
|
||
|
namespace Friendica\Test\src\Core\Lock;
|
||
|
|
||
|
|
||
|
use Friendica\Core\Cache\APCuCache;
|
||
|
use Friendica\Core\Lock\CacheLockDriver;
|
||
|
|
||
|
class APCuCacheLockDriverTest extends LockTest
|
||
|
{
|
||
|
protected function getInstance()
|
||
|
{
|
||
|
return new CacheLockDriver(new APCuCache());
|
||
|
}
|
||
|
}
|