Skip to content

Commit 93e232b

Browse files
committed
Remove redundant isset && !== null
1 parent 4ad94b3 commit 93e232b

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
@@ -79,7 +79,7 @@ public function process(PHP_CodeCoverage $coverage, $target = null, $name = null
7979
for ($i = $method['startLine'];
8080
$i <= $method['endLine'];
8181
$i++) {
82-
if (isset($coverage['lines'][$i]) && ($coverage['lines'][$i] !== null)) {
82+
if (isset($coverage['lines'][$i])) {
8383
$methodCount = max($methodCount, count($coverage['lines'][$i]));
8484
}
8585
}

0 commit comments

Comments
 (0)