1 | <?php |
||
21 | class XdebugAdapter implements AnalyzeAdapter |
||
22 | { |
||
23 | |||
24 | public function __construct() |
||
34 | |||
35 | public function start() |
||
39 | |||
40 | public function stop() |
||
41 | { |
||
42 | $result = xdebug_get_code_coverage(); |
||
43 | xdebug_stop_code_coverage(); |
||
44 | |||
45 | return $result; |
||
46 | } |
||
47 | |||
48 | /** |
||
49 | * @return boolean |
||
50 | */ |
||
51 | private function isSupportXdebugVersion() |
||
55 | |||
56 | /** |
||
57 | * @return boolean |
||
58 | */ |
||
59 | private function isXdebugCoverageEnabled() |
||
63 | |||
64 | } |
||
65 |