Skip to content

Commit c6e5a4b

Browse files
committed
Remove redundant isset && !== null
1 parent e87bf49 commit c6e5a4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CodeCoverage/Report/Clover.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public function process(PHP_CodeCoverage $coverage, $target = null, $name = null
7878
for ($i = $method['startLine'];
7979
$i <= $method['endLine'];
8080
$i++) {
81-
if (isset($coverage['lines'][$i]) && ($coverage['lines'][$i] !== null)) {
81+
if (isset($coverage['lines'][$i])) {
8282
$methodCount = max($methodCount, count($coverage['lines'][$i]));
8383
}
8484
}

0 commit comments

Comments
 (0)