rss-bridge/caches/NullCache.php
Dag c27a300e02
test: add failing mastodon test (#3255)
* fix: refactor cache factory

* test: add failing test

* add null cache
2023-02-15 21:22:37 +01:00

30 lines
364 B
PHP

<?php
declare(strict_types=1);
class NullCache implements CacheInterface
{
public function setScope($scope)
{
}
public function setKey($key)
{
}
public function loadData()
{
}
public function saveData($data)
{
}
public function getTime()
{
}
public function purgeCache($seconds)
{
}
}