Skip to content

Commit 3a5e100

Browse files
Fix 'Enforce that an expression gets used' errors
1 parent 8416f4e commit 3a5e100

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Parser.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@
77

88
function parse(string $pathToFile1, string $pathToFile2, string $format): void
99
{
10-
$resultString = genDiff($pathToFile1, $pathToFile2, $format);
11-
line('%s', $resultString);
10+
line('%s', genDiff($pathToFile1, $pathToFile2, $format));
1211
}

0 commit comments

Comments
 (0)