1 | <?php |
||
8 | abstract class AbstractCache |
||
9 | { |
||
10 | /** |
||
11 | * Verifies the the given cache key is a legal value. |
||
12 | * |
||
13 | * @param mixed $key The cache key to validate. |
||
14 | * |
||
15 | * @return void |
||
16 | * |
||
17 | * @throws InvalidArgumentException Thrown if the $key string is not a legal value. |
||
18 | */ |
||
19 | final protected function verifyKey($key) |
||
27 | } |
||
28 |