@@ -334,7 +334,7 @@ |
||
| 334 | 334 | * |
| 335 | 335 | * @param string $id The id of the cache entry to fetch. |
| 336 | 336 | * |
| 337 | - * @return mixed|false The cached data or FALSE, if no cache entry exists for the given id. |
|
| 337 | + * @return string The cached data or FALSE, if no cache entry exists for the given id. |
|
| 338 | 338 | */ |
| 339 | 339 | abstract protected function doFetch($id); |
| 340 | 340 | |
@@ -40,7 +40,6 @@ discard block |
||
| 40 | 40 | /** |
| 41 | 41 | * Fetches an entry by tag from the cache. |
| 42 | 42 | * |
| 43 | - * @param string $id The id of the cache entry to fetch. |
|
| 44 | 43 | * |
| 45 | 44 | * @return mixed The cached data or FALSE, if no cache entry exists for the given id. |
| 46 | 45 | */ |
@@ -59,7 +58,8 @@ discard block |
||
| 59 | 58 | /** |
| 60 | 59 | * Deletes a cache entries marked by tags. |
| 61 | 60 | * |
| 62 | - * @param array $tag The tag id's. |
|
| 61 | + * @param array $tags The tag id's. |
|
| 62 | + * @return void |
|
| 63 | 63 | */ |
| 64 | 64 | public function deleteByTags(array $tags = []); |
| 65 | 65 | } |