Skip to content

Commit 7e53eb5

Browse files
Fix CS/WS issues
1 parent 17bb3ab commit 7e53eb5

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

src/Differ.php

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,10 @@
3030

3131
final class Differ
3232
{
33-
public const OLD = 0;
34-
35-
public const ADDED = 1;
36-
37-
public const REMOVED = 2;
38-
39-
public const DIFF_LINE_END_WARNING = 3;
40-
33+
public const OLD = 0;
34+
public const ADDED = 1;
35+
public const REMOVED = 2;
36+
public const DIFF_LINE_END_WARNING = 3;
4137
public const NO_LINE_END_EOF_WARNING = 4;
4238
private DiffOutputBuilderInterface $outputBuilder;
4339

src/Line.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,8 @@
1111

1212
final class Line
1313
{
14-
public const ADDED = 1;
15-
16-
public const REMOVED = 2;
17-
14+
public const ADDED = 1;
15+
public const REMOVED = 2;
1816
public const UNCHANGED = 3;
1917
private int $type;
2018
private string $content;

0 commit comments

Comments
 (0)