We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4e997c commit 5050622Copy full SHA for 5050622
src/Differ.php
@@ -78,19 +78,19 @@ final class Differ
78
79
/**
80
* @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
+ * `-1` means the old has an EOL at EOF
82
*/
83
private $oldNoEolAtEofIdx = -1;
84
85
86
* @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
+ * `-1` means the new has an EOL at EOF
88
89
private $newNoEolAtEofIdx = -1;
90
91
92
* @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
+ * `-1` means `old < new`, `0` means `old == new`, `1` means `old > new`
94
95
private $oldNewComparison = 0;
96
0 commit comments