Skip to content

Commit 5050622

Browse files
committed
chore: tidy codes
Signed-off-by: Jack Cherng <[email protected]>
1 parent d4e997c commit 5050622

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Differ.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,19 +78,19 @@ final class Differ
7878

7979
/**
8080
* @var int the end index for the old if the old has no EOL at EOF
81-
* -1 means the old has an EOL at EOF
81+
* `-1` means the old has an EOL at EOF
8282
*/
8383
private $oldNoEolAtEofIdx = -1;
8484

8585
/**
8686
* @var int the end index for the new if the new has no EOL at EOF
87-
* -1 means the new has an EOL at EOF
87+
* `-1` means the new has an EOL at EOF
8888
*/
8989
private $newNoEolAtEofIdx = -1;
9090

9191
/**
9292
* @var int the result of comparing the old and the new with the spaceship operator
93-
* -1 means old < new, 0 means old == new, 1 means old > new
93+
* `-1` means `old < new`, `0` means `old == new`, `1` means `old > new`
9494
*/
9595
private $oldNewComparison = 0;
9696

0 commit comments

Comments
 (0)