We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d4aa8e commit 0f1bdddCopy full SHA for 0f1bddd
src/Driver/PCOV.php
@@ -9,13 +9,23 @@
9
*/
10
namespace SebastianBergmann\CodeCoverage\Driver;
11
12
+use SebastianBergmann\CodeCoverage\RuntimeException;
13
+
14
/**
15
* Driver for PCOV code coverage functionality.
16
*
17
* @codeCoverageIgnore
18
19
final class PCOV implements Driver
20
{
21
+ /**
22
+ * Specify that branch coverage should be included with collected code coverage information.
23
+ */
24
+ public function setDetermineBranchCoverage(bool $flag): void
25
+ {
26
+ throw new RuntimeException('Branch coverage is not supported in PHPDBG');
27
+ }
28
29
30
* Start collection of code coverage information.
31
0 commit comments