diff options
Diffstat (limited to 'assets/php/vendor/react/cache/src/CacheInterface.php')
-rwxr-xr-x | assets/php/vendor/react/cache/src/CacheInterface.php | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/assets/php/vendor/react/cache/src/CacheInterface.php b/assets/php/vendor/react/cache/src/CacheInterface.php deleted file mode 100755 index fd5f2d5..0000000 --- a/assets/php/vendor/react/cache/src/CacheInterface.php +++ /dev/null @@ -1,13 +0,0 @@ -<?php - -namespace React\Cache; - -interface CacheInterface -{ - // @return React\Promise\PromiseInterface - public function get($key); - - public function set($key, $value); - - public function remove($key); -} |