Mark V
1: <?php
2: namespace MOC\V\Core\FileSystem\Component;
3:
4: /**
5: * Interface IBridgeInterface
6: *
7: * @package MOC\V\Core\FileSystem\Component
8: */
9: interface IBridgeInterface
10: {
11:
12: /**
13: * @return null|false|string returns null if not detected, false on error (enable the php_fileinfo extension)
14: */
15: public function getMimeType();
16:
17: /**
18: * @return string
19: */
20: public function getLocation();
21:
22: /**
23: * @return string
24: */
25: public function getRealPath();
26:
27: /**
28: * @return string
29: */
30: public function __toString();
31: }
32: