1: <?php 2: 3: namespace WebLoader; 4: 5: /** 6: * IOutputNamingConvention 7: * 8: * @author Jan Marek 9: */ 10: interface IOutputNamingConvention 11: { 12: 13: public function getFilename(array $files, Compiler $compiler); 14: 15: } 16: