aboutsummaryrefslogtreecommitdiffstats
path: root/include/ITemplateEngine.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/ITemplateEngine.php')
-rwxr-xr-xinclude/ITemplateEngine.php21
1 files changed, 10 insertions, 11 deletions
diff --git a/include/ITemplateEngine.php b/include/ITemplateEngine.php
index 53c1845f4..7bd559a63 100755
--- a/include/ITemplateEngine.php
+++ b/include/ITemplateEngine.php
@@ -1,11 +1,10 @@
-<?php
-require_once 'boot.php';
-
-
-/**
- * Interface for template engines
- */
-interface ITemplateEngine {
- public function replace_macros($s,$v);
- public function get_markup_template($file, $root='');
-}
+<?php
+require_once 'boot.php';
+
+/**
+ * @brief Interface for template engines.
+ */
+interface ITemplateEngine {
+ public function replace_macros($s, $v);
+ public function get_markup_template($file, $root='');
+}