mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-08 05:34:27 +02:00
15 lines
265 B
PHP
15 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());
|
|
}
|
|
}
|