1: <?php
2:
3: namespace SMSApi\Api\Response;
4:
5: /**
6: * Class RawResponse
7: * @package SMSApi\Api\Response
8: */
9: class RawResponse implements Response {
10:
11: /**
12: * @var
13: */
14: private $text;
15:
16: /**
17: * @param $data
18: */
19: function __construct( $data ) {
20:
21: $this->text = $data;
22: }
23:
24: /**
25: * @return mixed
26: */
27: public function getText() {
28: return $this->text;
29: }
30:
31: }
32:
33: