Skip to content

Commit 2ad2118

Browse files
Remove type annotations that are no longer needed
1 parent ce84c35 commit 2ad2118

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/Report/Html/Renderer/File.php

-2
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,6 @@ private function renderSourceWithBranchCoverage(FileNode $node): string
599599

600600
$lineData = [];
601601

602-
/** @var int $line */
603602
foreach (array_keys($codeLines) as $line) {
604603
$lineData[$line + 1] = [
605604
'includedInBranches' => 0,
@@ -686,7 +685,6 @@ private function renderSourceWithPathCoverage(FileNode $node): string
686685

687686
$lineData = [];
688687

689-
/** @var int $line */
690688
foreach (array_keys($codeLines) as $line) {
691689
$lineData[$line + 1] = [
692690
'includedInPaths' => [],

0 commit comments

Comments
 (0)