2 Commits
1.0 ... 1.0.2

Author SHA1 Message Date
User
bddcf4fde4 20231008#2 2023-10-08 19:12:28 +03:00
User
ade92cda4b 20231007#1 2023-10-07 15:22:07 +03:00

View File

@@ -3,7 +3,6 @@
namespace Rmphp\Foundation;
interface TemplateInterface {
public function setTemplate(string $template, array $resource = []): TemplateInterface;
public function setSubtemplePath(string $subtemplatePath) : TemplateInterface;
public function getSubtemplePath(): string;
@@ -11,7 +10,6 @@ interface TemplateInterface {
public function addValue(string $point, string $string) : void;
public function setSubtemple(string $point, string $subTempl, array $resource = []) : void;
public function addSubtemple(string $point, string $subTempl, array $resource = []) : void;
public function setGlobals(array $globals = []) : void;
public function inc(string $incFile) : string;
public function getPoint(string $point) : string;
public function getResponse(): string;