aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets/php/vendor/react/cache/src/CacheInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'assets/php/vendor/react/cache/src/CacheInterface.php')
-rwxr-xr-xassets/php/vendor/react/cache/src/CacheInterface.php13
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);
-}