Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
54 | public function add(array $criteria = [], array $config = []): ResponseInterface |
||
55 | { |
||
56 | $this->populate($criteria); |
||
57 | |||
58 | return CompanyContacts::add( |
||
59 | $this->getCompanyId(), |
||
60 | $this->getContactId(), |
||
61 | $this->getConnection(), |
||
62 | $this->getCache(), |
||
63 | $this->getLogger(), |
||
64 | $config |
||
65 | ); |
||
66 | } |
||
67 | |||
87 |