1
0
Fork 0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-03-07 00:26:00 +03:00
rss-bridge/caches/NullCache.php
Dag c27a300e02
test: add failing mastodon test ()
* 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)
{
}
}