@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | * @link https://htmlpreview.github.io/?https://raw.githubusercontent.com/battis/simplecache/master/doc/classes/Battis.HierarchicalSimpleCache.html#method_getCache Pass-through to `HierarchicalSimpleCache::getCache()` |
275 | 275 | * |
276 | 276 | * @param string $key |
277 | - * @return mixed |
|
277 | + * @return boolean |
|
278 | 278 | */ |
279 | 279 | public function cache_get($key) |
280 | 280 | { |
@@ -288,7 +288,7 @@ discard block |
||
288 | 288 | * |
289 | 289 | * @param string $key |
290 | 290 | * @param mixed $data |
291 | - * @return boolean |
|
291 | + * @return boolean|null |
|
292 | 292 | */ |
293 | 293 | public function cache_set($key, $data) |
294 | 294 | { |
@@ -325,9 +325,9 @@ discard block |
||
325 | 325 | * @link http://www.smarty.net/docs/en/api.assign.tpl Pass-through to `Smarty::assign()` |
326 | 326 | * |
327 | 327 | * @param string $varname |
328 | - * @param mixed $var |
|
328 | + * @param string $var |
|
329 | 329 | * @param boolean $noCache (Optional, default `false`) |
330 | - * @return void |
|
330 | + * @return \Smarty_Internal_Data |
|
331 | 331 | */ |
332 | 332 | public function smarty_assign($varname, $var = null, $noCache = false) |
333 | 333 | { |
@@ -4,11 +4,9 @@ |
||
4 | 4 | |
5 | 5 | use LTI_Tool_Consumer; |
6 | 6 | use LTI_Data_Connector; |
7 | - |
|
8 | 7 | use Battis\HierarchicalSimpleCache; |
9 | 8 | use Battis\DataUtilities; |
10 | 9 | use Battis\BootstrapSmarty\NotificationMessage; |
11 | - |
|
12 | 10 | use smtech\StMarksSmarty\StMarksSmarty; |
13 | 11 | use smtech\ReflexiveCanvasLTI\Exception\ConfigurationException; |
14 | 12 |