| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 32 | public function getCounterpartyAddresses(string $counterpartyRef, string $counterpartyProperty): array |
||
| 33 | { |
||
| 34 | $params = [ |
||
| 35 | 'Ref' => $counterpartyRef, |
||
| 36 | 'CounterpartyProperty' => $counterpartyProperty, |
||
| 37 | ]; |
||
| 38 | return $this->connection->post(self::MODEL_NAME, 'getCounterpartyAddresses', $params); |
||
| 39 | } |
||
| 41 |