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