1 | <?php |
||
20 | class ResponseFeedback implements ResponseInterface |
||
21 | { |
||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $rawResponse; |
||
26 | |||
27 | /** |
||
28 | * @var \ArrayIterator |
||
29 | */ |
||
30 | protected $recipients; |
||
31 | |||
32 | /** |
||
33 | * @param string $binaryData |
||
34 | * @param \ArrayIterator $recipients |
||
35 | */ |
||
36 | public function __construct($binaryData, \ArrayIterator $recipients) |
||
41 | |||
42 | /** |
||
43 | * @return \ArrayIterator |
||
44 | */ |
||
45 | public function getRecipients() |
||
49 | |||
50 | /** |
||
51 | * {@inheritdoc} |
||
52 | */ |
||
53 | public function processResponse() |
||
70 | } |
||
71 |