Untitled

Anonymous
php
06/19/2023 1:57 PM
248 B
16
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...