Mark V
1: <?php
2: namespace MOC\V\Component\Mail\Component;
3:
4: /**
5: * Interface IBridgeInterface
6: *
7: * @package MOC\V\Component\Mail\Component
8: */
9: interface IBridgeInterface
10: {
11:
12: /**
13: * @param string $Host
14: * @param string $Username
15: * @param string $Password
16: * @param null|int $Port
17: * @param bool $useSSL
18: * @param bool $useTLS
19: *
20: * @return IBridgeInterface
21: */
22: public function connectServer($Host, $Username, $Password, $Port = null, $useSSL = false, $useTLS = false);
23:
24: /**
25: * @return IBridgeInterface
26: */
27: public function disconnectServer();
28:
29: }
30: