Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
32 | public function read(array $criteria = [], array $config = []): ResponseInterface |
||
33 | { |
||
34 | $this->populate($criteria); |
||
35 | |||
36 | return TimelineEvent::read( |
||
37 | $this->getId(), |
||
38 | $this->getTypeId(), |
||
39 | $this->getConnection(), |
||
40 | $this->getCache(), |
||
41 | $this->getLogger(), |
||
42 | $config |
||
43 | ); |
||
44 | } |
||
45 | |||
67 |