@@ -270,7 +270,7 @@ discard block |
||
270 | 270 | * @link https://htmlpreview.github.io/?https://raw.githubusercontent.com/battis/simplecache/master/doc/classes/Battis.HierarchicalSimpleCache.html#method_getCache Pass-through to `HierarchicalSimpleCache::getCache()` |
271 | 271 | * |
272 | 272 | * @param string $key |
273 | - * @return mixed |
|
273 | + * @return boolean |
|
274 | 274 | */ |
275 | 275 | public function cache_get($key) |
276 | 276 | { |
@@ -284,7 +284,7 @@ discard block |
||
284 | 284 | * |
285 | 285 | * @param string $key |
286 | 286 | * @param mixed $data |
287 | - * @return boolean |
|
287 | + * @return boolean|null |
|
288 | 288 | */ |
289 | 289 | public function cache_set($key, $data) |
290 | 290 | { |
@@ -321,9 +321,9 @@ discard block |
||
321 | 321 | * @link http://www.smarty.net/docs/en/api.assign.tpl Pass-through to `Smarty::assign()` |
322 | 322 | * |
323 | 323 | * @param string $varname |
324 | - * @param mixed $var |
|
324 | + * @param string $var |
|
325 | 325 | * @param boolean $noCache (Optional, default `false`) |
326 | - * @return void |
|
326 | + * @return \Smarty_Internal_Data |
|
327 | 327 | */ |
328 | 328 | public function smarty_assign($varname, $var = null, $noCache = false) |
329 | 329 | { |
@@ -364,6 +364,7 @@ discard block |
||
364 | 364 | * @param string $title |
365 | 365 | * @param string $content, |
366 | 366 | * @param string $class (Optional, default `NotificationMessage::INFO`) |
367 | + * @param string $content |
|
367 | 368 | */ |
368 | 369 | public function smarty_addMessage($title, $content, $class = NotificationMessage::INFO) |
369 | 370 | { |