1: <?php
2:
3: namespace WebLoader;
4:
5: /**
6: * @author Jan Marek
7: */
8: interface IFileCollection
9: {
10:
11: /**
12: * @return string
13: */
14: public function getRoot();
15:
16: /**
17: * @return array
18: */
19: public function getFiles();
20:
21: /**
22: * @return array
23: */
24: public function getRemoteFiles();
25:
26: }
27: