<?php namespace WayGeneratorsCompilers;interface Compiler { /** * Compile the template using * the given data * * @param $template * @param $data */ public function compile($template, $data);}