Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
61 | public function upsert(array $criteria = [], array $config = []): ResponseInterface |
||
62 | { |
||
63 | $this->populate($criteria); |
||
64 | |||
65 | return Company::upsert( |
||
66 | $this->getPayload(), |
||
67 | $this->getId(), |
||
68 | $this->getConnection(), |
||
69 | $this->getCache(), |
||
70 | $this->getLogger(), |
||
71 | $config |
||
72 | ); |
||
73 | } |
||
74 | |||
93 |