1 | <?php |
||
25 | class PhpRenderer implements ViewRendererInterface, OwnerAwareInterface, OwnerForwarderInterface |
||
26 | { |
||
27 | |||
28 | use \Maslosoft\MiniView\Traits\OwnerAwareTrait, |
||
29 | \Maslosoft\MiniView\Traits\OwnerForwarderTrait; |
||
30 | |||
31 | /** |
||
32 | * Render php file |
||
33 | * @param string $_viewFile_ |
||
34 | * @param mixed $_data_ |
||
35 | * @param bool $_return_ |
||
36 | * @return string |
||
37 | */ |
||
38 | public function render($_viewFile_, $_data_, $_return_ = false) |
||
61 | |||
62 | } |
||
63 |