aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/template/base.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/template/base.php')
-rw-r--r--phpBB/phpbb/template/base.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/phpBB/phpbb/template/base.php b/phpBB/phpbb/template/base.php
index 3778424a96..86868707f0 100644
--- a/phpBB/phpbb/template/base.php
+++ b/phpBB/phpbb/template/base.php
@@ -7,6 +7,8 @@
*
*/
+namespace phpbb\template;
+
/**
* @ignore
*/
@@ -15,13 +17,13 @@ if (!defined('IN_PHPBB'))
exit;
}
-abstract class phpbb_template_base implements phpbb_template
+abstract class base implements template
{
/**
* Template context.
* Stores template data used during template rendering.
*
- * @var phpbb_template_context
+ * @var \phpbb\template\context
*/
protected $context;