| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 20 | final class ProcessSearcher implements ProcessSearcherInterface |
||
| 21 | { |
||
| 22 | public function __construct( |
||
| 23 | private FileReaderInterface $file_reader, |
||
| 24 | private ThreadEnumerator $thread_enumerator, |
||
| 25 | ) { |
||
| 26 | } |
||
| 27 | |||
| 28 | /** @return int[] */ |
||
| 29 | public function searchByRegex(string $regex): array |
||
| 42 | } |
||
| 43 | } |
||
| 44 |