aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets/php/vendor/react/cache/src/CacheInterface.php
blob: fd5f2d5405915e74d828b89a207bef2a0bb8dde6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace React\Cache;

interface CacheInterface
{
    // @return React\Promise\PromiseInterface
    public function get($key);

    public function set($key, $value);

    public function remove($key);
}