1: <?
2: namespace RM\AssetsCollector\Compilers;
3:
4: /**
5: * Interface for CSS/JS file compilers.
6: *
7: * @author Roman Mátyus
8: * @copyright (c) Roman Mátyus 2012
9: * @license MIT
10: */
11: interface IAssetsCompiler
12: {
13: /**
14: * Get compiled content.
15: * @param input string
16: * @return output string
17: */
18: public function compile($input,$dir=null);
19: }
20: