mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-09 12:02:24 +09:00
테스트 코드 수정
This commit is contained in:
parent
6b6a477cb0
commit
799f6f3a67
1 changed files with 2 additions and 2 deletions
|
|
@ -273,10 +273,10 @@ class TemplateHandlerWrapper extends \TemplateHandler {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function init($tpl_path, $tpl_filename, $tpl_file = '') {
|
public function init($tpl_path, $tpl_filename, $tpl_file = '') {
|
||||||
call_user_method('init', $this->inst, $tpl_path, $tpl_filename, $tpl_file);
|
call_user_func(array($this->inst, 'init'), $tpl_path, $tpl_filename, $tpl_file);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function parse($buff = null) {
|
public function parse($buff = null) {
|
||||||
return call_user_method('parse', $this->inst, $buff);
|
return call_user_func(array($this->inst, 'parse'), $buff);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue