| 1 | <?php |
||
| 5 | abstract class Transformer implements TransformerInterface |
||
| 6 | { |
||
| 7 | protected $options = array(); |
||
| 8 | |||
| 9 | public function __construct(array $options = array()) |
||
| 13 | |||
| 14 | public function getName() |
||
| 18 | |||
| 19 | public function renderFile($file, array $locals = array()) |
||
| 24 | |||
| 25 | public function render($template, array $options = array()) |
||
| 29 | } |
||
| 30 |