Passed
Push — master ( 0e9290...52a373 )
by Josh
02:21
created
src/Decoder.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -15,23 +15,23 @@  discard block
 block discarded – undo
15 15
 class Decoder
16 16
 {
17 17
 	/**
18
-	* @var string Bencoded string being decoded
19
-	*/
18
+	 * @var string Bencoded string being decoded
19
+	 */
20 20
 	protected string $bencoded;
21 21
 
22 22
 	/**
23
-	* @var int Length of the bencoded string
24
-	*/
23
+	 * @var int Length of the bencoded string
24
+	 */
25 25
 	protected int $len;
26 26
 
27 27
 	/**
28
-	* @var int Safe rightmost boundary
29
-	*/
28
+	 * @var int Safe rightmost boundary
29
+	 */
30 30
 	protected int $max;
31 31
 
32 32
 	/**
33
-	* @var int Position of the cursor while decoding
34
-	*/
33
+	 * @var int Position of the cursor while decoding
34
+	 */
35 35
 	protected int $offset = 0;
36 36
 
37 37
 	public static function decode(string $bencoded): ArrayObject|array|int|string
@@ -69,8 +69,8 @@  discard block
 block discarded – undo
69 69
 	}
70 70
 
71 71
 	/**
72
-	* Check the cursor's position after decoding is done
73
-	*/
72
+	 * Check the cursor's position after decoding is done
73
+	 */
74 74
 	protected function checkCursorPosition(): void
75 75
 	{
76 76
 		if ($this->offset !== $this->len)
@@ -100,10 +100,10 @@  discard block
 block discarded – undo
100 100
 	}
101 101
 
102 102
 	/**
103
-	* Adjust the rightmost boundary to the last safe character that can start a value
104
-	*
105
-	* Will rewind the boundary to skip the rightmost digits, optionally preceded by "i" or "i-"
106
-	*/
103
+	 * Adjust the rightmost boundary to the last safe character that can start a value
104
+	 *
105
+	 * Will rewind the boundary to skip the rightmost digits, optionally preceded by "i" or "i-"
106
+	 */
107 107
 	protected function computeSafeBoundary(): void
108 108
 	{
109 109
 		$boundary = $this->len - 1;
Please login to merge, or discard this patch.