Untitled

 avatar
unknown
php
2 years ago
184 B
6
Indexable
<?php

interface CacheInterface
{
    public function has(string $key): bool;

    public function get(string $key): mixed;

    public function set(string $key, mixed $value): void;
}
Editor is loading...