• File: MemoryCacheTest.php
  • Full Path: /home/chassiw/www/wp-content/plugins/zero-spam/vendor/sabre/cache/tests/Cache/MemoryCacheTest.php
  • File size: 234 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

declare(strict_types=1);

namespace Sabre\Cache;

use Psr\SimpleCache\CacheInterface;

class MemoryCacheTest extends AbstractCacheTest
{
    public function getCache(): CacheInterface
    {
        return new Memory();
    }
}