mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-12-20 03:15:57 +01:00
27 lines
429 B
PHP
27 lines
429 B
PHP
<?php
|
|
namespace Vichan\Data\Driver;
|
|
|
|
defined('TINYBOARD') or exit;
|
|
|
|
|
|
/**
|
|
* No-op cache. Useful for testing.
|
|
*/
|
|
class NoneCacheDriver implements CacheDriver {
|
|
public function get(string $key): mixed {
|
|
return null;
|
|
}
|
|
|
|
public function set(string $key, mixed $value, mixed $expires = false): void {
|
|
// No-op.
|
|
}
|
|
|
|
public function delete(string $key): void {
|
|
// No-op.
|
|
}
|
|
|
|
public function flush(): void {
|
|
// No-op.
|
|
}
|
|
}
|