Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 10 |
Ratio | 100 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
31 | 6 | View Code Duplication | public function getMatchedSegments() |
32 | { |
||
33 | 6 | $ret = []; |
|
34 | 6 | $segments = $this->getEntityValue('matched_segments', []); |
|
35 | 6 | foreach ($segments as $segment) { |
|
36 | 6 | $ret[] = new Segment($segment); |
|
37 | 4 | } |
|
38 | |||
39 | 6 | return $ret; |
|
40 | } |
||
41 | } |
||
42 |