Mark V
1: <?php
2: namespace MOC\V\Core\SecureKernel\Component;
3:
4: /**
5: * Interface IBridgeInterface
6: *
7: * @package MOC\V\Core\SecureKernel\Component
8: */
9: interface IBridgeInterface
10: {
11:
12: /**
13: * @param string $Host
14: * @param int $Port
15: * @param int $Timeout
16: *
17: * @return IBridgeInterface
18: */
19: public function openConnection($Host, $Port = 22, $Timeout = 10);
20:
21: /**
22: * @return IBridgeInterface
23: */
24: public function closeConnection();
25: }
26: