Skip to content

Commit a9a715d

Browse files
Revert deprecation
1 parent b6a8ebf commit a9a715d

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

Diff for: ChangeLog-11.0.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
44

5+
## [11.0.9] - 2025-MM-DD
6+
7+
### Changed
8+
9+
* The `SebastianBergmann\CodeCoverage\Filter::includeUncoveredFiles()` and `SebastianBergmann\CodeCoverage\Filter::excludeUncoveredFiles()` methods are no longer deprecated
10+
511
## [11.0.8] - 2024-12-11
612

713
### Changed
@@ -63,6 +69,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
6369
* This component now requires PHP-Parser 5
6470
* This component is no longer supported on PHP 8.1
6571

72+
[11.0.9]: https://github.com/sebastianbergmann/php-code-coverage/compare/11.0.8...11.0
6673
[11.0.8]: https://github.com/sebastianbergmann/php-code-coverage/compare/11.0.7...11.0.8
6774
[11.0.7]: https://github.com/sebastianbergmann/php-code-coverage/compare/11.0.6...11.0.7
6875
[11.0.6]: https://github.com/sebastianbergmann/php-code-coverage/compare/11.0.5...11.0.6

Diff for: src/CodeCoverage.php

-6
Original file line numberDiff line numberDiff line change
@@ -287,17 +287,11 @@ public function disableCheckForUnintentionallyCoveredCode(): void
287287
$this->checkForUnintentionallyCoveredCode = false;
288288
}
289289

290-
/**
291-
* @deprecated
292-
*/
293290
public function includeUncoveredFiles(): void
294291
{
295292
$this->includeUncoveredFiles = true;
296293
}
297294

298-
/**
299-
* @deprecated
300-
*/
301295
public function excludeUncoveredFiles(): void
302296
{
303297
$this->includeUncoveredFiles = false;

0 commit comments

Comments
 (0)