opsdash-app/opsdash/tests/php/stubs/OCP/ICache.php
2025-12-21 10:50:07 +07:00

13 lines
214 B
PHP

<?php
declare(strict_types=1);
namespace OCP;
interface ICache {
public function get(string $key);
public function set(string $key, $value, int $ttl = 0): bool;
public function hasKey(string $key): bool;
}