Conditions | 3 |
Paths | 3 |
Total Lines | 19 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 3.0067 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | 27 | public function getClassFromMethod(string $docBlock, string $method): string |
|
10 | { |
||
11 | 27 | if ($docBlock === '') { |
|
12 | 1 | return ''; |
|
13 | } |
||
14 | |||
15 | 26 | if (strcasecmp(substr(PHP_OS, 0, 3), 'WIN') === 0) { |
|
16 | $docBlock = str_replace("\n", PHP_EOL, $docBlock); |
||
17 | } |
||
18 | |||
19 | 26 | $lines = array_filter( |
|
20 | 26 | explode(PHP_EOL, $docBlock), |
|
21 | 26 | static fn (string $l): bool => str_contains($l, $method), |
|
22 | 26 | ); |
|
23 | |||
24 | 26 | /** @var array<int, string> $lineSplit */ |
|
25 | $lineSplit = explode(' ', (string)reset($lines)); |
||
26 | 26 | ||
27 | return $lineSplit[3] ?? ''; |
||
28 | } |
||
30 |