BaseObject moved to src/Core

BaseObject moved to Friendica\Core namespace. References and function calls updated.
This commit is contained in:
Adam Magness
2017-11-16 13:05:41 -05:00
parent fda48ec431
commit ecd9e3e07e
6 changed files with 76 additions and 58 deletions
+8 -4
View File
@@ -1,11 +1,15 @@
<?php
require_once 'boot.php';
/**
* @file object/TemplateEngine.php
*/
require_once 'boot.php';
/**
* Interface for template engines
*/
interface ITemplateEngine {
public function replace_macros($s,$v);
public function get_template_file($file, $root='');
interface ITemplateEngine
{
public function replace_macros($s, $v);
public function get_template_file($file, $root = '');
}