|
1
|
<?php |
|
2
|
namespace NitroPack\Interfaces; |
|
3
|
|
|
4
|
interface CacheManager { |
|
5
|
public function isCacheAllowed($key); |
|
6
|
public function purgeCache($key = NULL); |
|
7
|
public function hasCache($key); |
|
8
|
public function getCache($key); |
|
9
|
public function setCache($key, $content); |
|
10
|
} |
|
11
|
|