Completed
Push — master ( 16dec3...d8cd5e )
by Josh
02:15
created
src/Passes/MergePrefix.php 1 patch
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@  discard block
 block discarded – undo
10 10
 class MergePrefix extends AbstractPass
11 11
 {
12 12
 	/**
13
-	* {@inheritdoc}
14
-	*/
13
+	 * {@inheritdoc}
14
+	 */
15 15
 	protected function processStrings(array $strings)
16 16
 	{
17 17
 		$newStrings = [];
@@ -24,11 +24,11 @@  discard block
 block discarded – undo
24 24
 	}
25 25
 
26 26
 	/**
27
-	* Get the number of leading elements common to all given strings
28
-	*
29
-	* @param  array[] $strings
30
-	* @return integer
31
-	*/
27
+	 * Get the number of leading elements common to all given strings
28
+	 *
29
+	 * @param  array[] $strings
30
+	 * @return integer
31
+	 */
32 32
 	protected function getPrefixLength(array $strings)
33 33
 	{
34 34
 		$len = 1;
@@ -42,13 +42,13 @@  discard block
 block discarded – undo
42 42
 	}
43 43
 
44 44
 	/**
45
-	* Return given strings grouped by their first element
46
-	*
47
-	* NOTE: assumes that this pass is run before the first element of any string could be replaced
48
-	*
49
-	* @param  array[] $strings
50
-	* @return array[]
51
-	*/
45
+	 * Return given strings grouped by their first element
46
+	 *
47
+	 * NOTE: assumes that this pass is run before the first element of any string could be replaced
48
+	 *
49
+	 * @param  array[] $strings
50
+	 * @return array[]
51
+	 */
52 52
 	protected function getStringsByPrefix(array $strings)
53 53
 	{
54 54
 		$byPrefix = [];
@@ -61,11 +61,11 @@  discard block
 block discarded – undo
61 61
 	}
62 62
 
63 63
 	/**
64
-	* Merge given strings into a new single string
65
-	*
66
-	* @param  array[] $strings
67
-	* @return array
68
-	*/
64
+	 * Merge given strings into a new single string
65
+	 *
66
+	 * @param  array[] $strings
67
+	 * @return array
68
+	 */
69 69
 	protected function mergeStrings(array $strings)
70 70
 	{
71 71
 		$len       = $this->getPrefixLength($strings);
@@ -79,12 +79,12 @@  discard block
 block discarded – undo
79 79
 	}
80 80
 
81 81
 	/**
82
-	* Test whether all given strings' elements match at given position
83
-	*
84
-	* @param  array[] $strings
85
-	* @param  integer $pos
86
-	* @return bool
87
-	*/
82
+	 * Test whether all given strings' elements match at given position
83
+	 *
84
+	 * @param  array[] $strings
85
+	 * @param  integer $pos
86
+	 * @return bool
87
+	 */
88 88
 	protected function stringsMatch(array $strings, $pos)
89 89
 	{
90 90
 		$value = $strings[0][$pos];
Please login to merge, or discard this patch.