Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | 16 | public function find(string $content): array |
|
21 | { |
||
22 | 16 | $texts = []; |
|
23 | 16 | foreach ($this->patterns as $pattern => $textPosition) { |
|
24 | 14 | if ($textPosition === null) { |
|
25 | 2 | $content = preg_replace($pattern, '', $content); |
|
26 | 2 | continue; |
|
27 | } |
||
28 | 14 | $texts = array_merge($texts, $this->findTexts($pattern, $content, $textPosition)); |
|
29 | 14 | $content = preg_replace($pattern, '', $content); |
|
30 | } |
||
31 | 16 | return $texts; |
|
32 | } |
||
49 |