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 c8af3cc commit a4d5e78Copy full SHA for a4d5e78
src/Subscriber/Application/ApplicationFinishedSubscriber.php
@@ -58,7 +58,9 @@ public function notify(Finished $event): void
58
);
59
continue;
60
}
61
- if ($this->minCoverageRules->hasOtherRulesThanTotalRule() && \XMLReader::ELEMENT == $reader->nodeType && 'class' == $reader->name && 3 === $reader->depth) {
+ if ($this->minCoverageRules->hasOtherRulesThanTotalRule()
62
+ && \XMLReader::ELEMENT == $reader->nodeType && 'class' == $reader->name
63
+ && (3 === $reader->depth || 4 === $reader->depth)) {
64
/** @var \SimpleXMLElement $node */
65
$node = simplexml_load_string($reader->readInnerXml());
66
/** @var string $className */
0 commit comments