Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
87 | public function upsert(array $criteria = [], array $config = []): ResponseInterface |
||
88 | { |
||
89 | $this->populate($criteria); |
||
90 | |||
91 | return Company::upsert( |
||
92 | $this->getPayload(), |
||
93 | $this->findId(), |
||
94 | $this->getConnection(), |
||
95 | $this->getCache(), |
||
96 | $this->getLogger(), |
||
97 | $config |
||
98 | ); |
||
99 | } |
||
100 | |||
120 |