Skip to content

Commit 015b773

Browse files
Fix #6274
1 parent d538edb commit 015b773

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

ChangeLog-12.2.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes of the PHPUnit 12.2 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.
44

5+
## [12.2.8] - 2025-MM-DD
6+
7+
### Fixed
8+
9+
* [#6274](https://github.com/sebastianbergmann/phpunit/issues/6274): Infinite recursion when code coverage report in OpenClover XML format is configured in XML configuration file
10+
511
## [12.2.7] - 2025-07-11
612

713
### Fixed
@@ -107,6 +113,7 @@ This feature is experimental and the generated XML may change to enhance complia
107113
* A warning is now emitted when more than one of `#[Small]`, `#[Medium]`, or `#[Large]` is used on a test class
108114
* A warning is now emitted when a data provider provides data sets that have more values than the test method consumes using arguments
109115

116+
[12.2.8]: https://github.com/sebastianbergmann/phpunit/compare/12.2.7...12.2
110117
[12.2.7]: https://github.com/sebastianbergmann/phpunit/compare/12.2.6...12.2.7
111118
[12.2.6]: https://github.com/sebastianbergmann/phpunit/compare/12.2.5...12.2.6
112119
[12.2.5]: https://github.com/sebastianbergmann/phpunit/compare/12.2.4...12.2.5

src/TextUI/Configuration/Xml/CodeCoverage/CodeCoverage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public function openClover(): OpenClover
184184
);
185185
}
186186

187-
return $this->openClover();
187+
return $this->openClover;
188188
}
189189

190190
/**

0 commit comments

Comments
 (0)