Skip to content

Commit 9eda8de

Browse files
SpacePossumsebastianbergmann
authored andcommitted
CS
1 parent f32b411 commit 9eda8de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Differ.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ public function __construct(string $header = "--- Original\n+++ New\n", bool $sh
4242
*/
4343
public function diff($from, $to, LongestCommonSubsequenceCalculator $lcs = null): string
4444
{
45-
$from = $this->validateDiffInput($from);
46-
$to = $this->validateDiffInput($to);
47-
$diff = $this->diffToArray($from, $to, $lcs);
45+
$from = $this->validateDiffInput($from);
46+
$to = $this->validateDiffInput($to);
47+
$diff = $this->diffToArray($from, $to, $lcs);
4848

4949
return $this->getDiff($diff);
5050
}

0 commit comments

Comments
 (0)