|
1
|
<?php |
|
2
|
|
|
3
|
// TODO PHP7.x declare(strict_types=1); |
|
4
|
// TODO PHP7.x; type-hints & return types; |
|
5
|
|
|
6
|
namespace WPStaging\Framework\TemplateEngine; |
|
7
|
|
|
8
|
interface TemplateEngineInterface |
|
9
|
{ |
|
10
|
|
|
11
|
public function render($path, array $params = []); |
|
12
|
} |
|
13
|
|