Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
42 | public function update(array $criteria = [], array $config = []): ResponseInterface |
||
43 | { |
||
44 | $this->populate($criteria); |
||
45 | |||
46 | return Contact::update( |
||
47 | $this->getPayload(), |
||
48 | $this->getId(), |
||
49 | $this->getConnection(), |
||
50 | $this->getCache(), |
||
51 | $this->getLogger(), |
||
52 | $config |
||
53 | ); |
||
54 | } |
||
55 | |||
93 |