| 1 | <?php |
||
| 12 | class Optimizer |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var TemplateNormalizer |
||
| 16 | */ |
||
| 17 | public $normalizer; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Constructor |
||
| 21 | */ |
||
| 22 | public function __construct() |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Optimize a single template |
||
| 34 | * |
||
| 35 | * @param string $template Original template |
||
| 36 | * @return string Optimized template |
||
| 37 | */ |
||
| 38 | public function optimizeTemplate($template) |
||
| 42 | } |