aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Template/Base.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Template/Base.php')
-rw-r--r--lib/private/Template/Base.php7
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/private/Template/Base.php b/lib/private/Template/Base.php
index 35c2bf596ad..6603473af33 100644
--- a/lib/private/Template/Base.php
+++ b/lib/private/Template/Base.php
@@ -8,7 +8,6 @@
namespace OC\Template;
use OCP\Defaults;
-use Throwable;
class Base {
private $template; // The template
@@ -70,18 +69,14 @@ class Base {
/**
* Assign variables
- * @param string $key key
- * @param float|array|bool|integer|string|Throwable $value value
- * @return bool
*
* This function assigns a variable. It can be accessed via $_[$key] in
* the template.
*
* If the key existed before, it will be overwritten
*/
- public function assign($key, $value) {
+ public function assign(string $key, float|array|bool|int|string|\Throwable|null $value): void {
$this->vars[$key] = $value;
- return true;
}
/**