Skip to content

Commit ba764f1

Browse files
Fix CS/WS issues
1 parent 193e853 commit ba764f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/PatchCoverage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function execute(string $coverageFile, string $patchFile, string $pathPre
3232
$pathPrefix .= DIRECTORY_SEPARATOR;
3333
}
3434

35-
$coverage = include($coverageFile);
35+
$coverage = include $coverageFile;
3636

3737
assert($coverage instanceof CodeCoverage);
3838

src/cli/MergeCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function run(Arguments $arguments): int
5252
$errors = [];
5353

5454
foreach ($files as $file) {
55-
$_coverage = include($file);
55+
$_coverage = include $file;
5656

5757
if (!$_coverage instanceof CodeCoverage) {
5858
$errors[] = $file;

0 commit comments

Comments
 (0)