Skip to content

Commit 2a82a03

Browse files
Mark internal classes as such
1 parent 6ef11c5 commit 2a82a03

35 files changed

+77
-16
lines changed

src/Directory.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
*/
1010
namespace SebastianBergmann\CodeCoverage;
1111

12+
/**
13+
* @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage
14+
*/
1215
final class Directory
1316
{
1417
/**

src/Driver/Driver.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
use SebastianBergmann\CodeCoverage\DeadCodeDetectionNotSupportedException;
1414
use SebastianBergmann\CodeCoverage\RawCodeCoverageData;
1515

16+
/**
17+
* @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage
18+
*/
1619
abstract class Driver
1720
{
1821
/**

src/Driver/PcovDriver.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
use SebastianBergmann\CodeCoverage\Filter;
1313
use SebastianBergmann\CodeCoverage\RawCodeCoverageData;
1414

15+
/**
16+
* @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage
17+
*/
1518
final class PcovDriver extends Driver
1619
{
1720
/**

src/Driver/PhpdbgDriver.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
use SebastianBergmann\CodeCoverage\RawCodeCoverageData;
1313
use SebastianBergmann\CodeCoverage\RuntimeException;
1414

15+
/**
16+
* @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage
17+
*/
1518
final class PhpdbgDriver extends Driver
1619
{
1720
/**

src/Driver/XdebugDriver.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
use SebastianBergmann\CodeCoverage\RawCodeCoverageData;
1414
use SebastianBergmann\CodeCoverage\RuntimeException;
1515

16+
/**
17+
* @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage
18+
*/
1619
final class XdebugDriver extends Driver
1720
{
1821
/**

src/Node/AbstractNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use SebastianBergmann\CodeCoverage\Percentage;
1313

1414
/**
15-
* Base class for nodes in the code coverage information tree.
15+
* @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage
1616
*/
1717
abstract class AbstractNode implements \Countable
1818
{

src/Node/Builder.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
use SebastianBergmann\CodeCoverage\CodeCoverage;
1313
use SebastianBergmann\CodeCoverage\ProcessedCodeCoverageData;
1414

15+
/**
16+
* @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage
17+
*/
1518
final class Builder
1619
{
1720
public function build(CodeCoverage $coverage): Directory

src/Node/Directory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace SebastianBergmann\CodeCoverage\Node;
1111

1212
/**
13-
* Represents a directory in the code coverage information tree.
13+
* @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage
1414
*/
1515
final class Directory extends AbstractNode implements \IteratorAggregate
1616
{

src/Node/File.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace SebastianBergmann\CodeCoverage\Node;
1111

1212
/**
13-
* Represents a file in the code coverage information tree.
13+
* @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage
1414
*/
1515
final class File extends AbstractNode
1616
{

src/Node/Iterator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace SebastianBergmann\CodeCoverage\Node;
1111

1212
/**
13-
* Recursive iterator for node object graphs.
13+
* @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage
1414
*/
1515
final class Iterator implements \RecursiveIterator
1616
{

0 commit comments

Comments
 (0)