inital commit
[pharext/pharext.org] / app / Github / Storage.php
1 <?php
2
3 namespace app\Github;
4
5 interface Storage
6 {
7 function set($key, $val, $ttl = null);
8 function get($key, &$val = null, &$ttl = null, $update = false);
9 function del($key);
10 }