1: <?php
2:
3: namespace SMSApi\Proxy;
4:
5: interface Proxy {
6:
7: public function execute( \SMSApi\Api\Action\AbstractAction $action );
8:
9: public function getProtocol();
10:
11: public function getHost();
12:
13: public function getPort();
14: }