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