Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
73 | public function remove(array $criteria = [], array $config = []): ResponseInterface |
||
74 | { |
||
75 | $this->populate($criteria); |
||
76 | |||
77 | return CompanyContacts::remove( |
||
78 | $this->getCompanyId(), |
||
79 | $this->getContactId(), |
||
80 | $this->getConnection(), |
||
81 | $this->getCache(), |
||
82 | $this->getLogger(), |
||
83 | $config |
||
84 | ); |
||
85 | } |
||
86 | } |
||
87 |