Skip to content

Commit 11eab82

Browse files
SpacePossumsebastianbergmann
authored andcommitted
CS
1 parent 6a1b8ad commit 11eab82

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Output/StrictUnifiedDiffOutputBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ private function writeHunk(
310310

311311
private function assertString(array $options, string $option): void
312312
{
313-
if (!is_string($options[$option])) {
313+
if (!\is_string($options[$option])) {
314314
throw new ConfigurationException($option, 'a string', $options[$option]);
315315
}
316316
}

src/Parser.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ public function parse(string $string): array
6363

6464
private function parseFileDiff(Diff $diff, array $lines): void
6565
{
66-
$chunks = [];
67-
$chunk = null;
66+
$chunks = [];
67+
$chunk = null;
6868
$diffLines = [];
6969

7070
foreach ($lines as $line) {

0 commit comments

Comments
 (0)