Total Complexity | 6 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
12 | final class PhpdbgEngine implements \MyTester\ICodeCoverageEngine { |
||
13 | public function getName(): string { |
||
14 | return "phpdbg"; |
||
15 | } |
||
16 | |||
17 | public function isAvailable(): bool { |
||
18 | return PHP_SAPI === "phpdbg"; |
||
19 | } |
||
20 | |||
21 | public function start(): void { |
||
22 | phpdbg_start_oplog(); |
||
|
|||
23 | } |
||
24 | |||
25 | public function collect(): array { |
||
38 | } |
||
39 | } |
||
40 | ?> |