Mark V
1: <?php
2: namespace MOC\V\Component\Document\Component;
3:
4: use MOC\V\Component\Document\Component\Parameter\Repository\FileParameter;
5:
6: /**
7: * Interface IBridgeInterface
8: *
9: * @package MOC\V\Component\Document\Component
10: */
11: interface IBridgeInterface
12: {
13:
14: /**
15: * @param FileParameter $Location
16: *
17: * @return IBridgeInterface
18: */
19: public function loadFile(FileParameter $Location);
20:
21: /**
22: * @param null|FileParameter $Location
23: *
24: * @return IBridgeInterface
25: */
26: public function saveFile(FileParameter $Location = null);
27: }
28: