| 1 | <?php |
||
| 7 | class QueueBindings |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var array |
||
| 11 | */ |
||
| 12 | private $receivingAddresses = []; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var array |
||
| 16 | */ |
||
| 17 | private $sendingAddresses = []; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param string $address |
||
| 21 | */ |
||
| 22 | 1 | public function bindReceiving($address) |
|
| 26 | |||
| 27 | /** |
||
| 28 | * @param string $address |
||
| 29 | */ |
||
| 30 | 1 | public function bindSending($address) |
|
| 34 | |||
| 35 | /** |
||
| 36 | * @return array |
||
| 37 | */ |
||
| 38 | 1 | public function getReceivingAddresses() |
|
| 42 | |||
| 43 | /** |
||
| 44 | * @return array |
||
| 45 | */ |
||
| 46 | 1 | public function getSendingAddresses() |
|
| 50 | } |
||
| 51 |