Skip to content

Commit 1cf73da

Browse files
committed
2 parents 6594e1b + b46ba51 commit 1cf73da

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Reports/Gitblame.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ protected function getBlameContent($filename)
7878
}
7979

8080
$rawContent = stream_get_contents($handle);
81-
fclose($handle);
81+
pclose($handle);
8282

8383
$blames = explode("\n", $rawContent);
8484
chdir($cwd);

src/Reports/Hgblame.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ protected function getBlameContent($filename)
9797
}
9898

9999
$rawContent = stream_get_contents($handle);
100-
fclose($handle);
100+
pclose($handle);
101101

102102
$blames = explode("\n", $rawContent);
103103
chdir($cwd);

src/Reports/Svnblame.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ protected function getBlameContent($filename)
6161
}
6262

6363
$rawContent = stream_get_contents($handle);
64-
fclose($handle);
64+
pclose($handle);
6565

6666
$blames = explode("\n", $rawContent);
6767

0 commit comments

Comments
 (0)