Completed
Branch master (7d9e94)
by Josh
02:18
created
src/Passes/CoalesceSingleCharacterPrefix.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@  discard block
 block discarded – undo
10 10
 class CoalesceSingleCharacterPrefix extends AbstractPass
11 11
 {
12 12
 	/**
13
-	* {@inheritdoc}
14
-	*/
13
+	 * {@inheritdoc}
14
+	 */
15 15
 	protected function processStrings(array $strings)
16 16
 	{
17 17
 		$newStrings = [];
@@ -38,11 +38,11 @@  discard block
 block discarded – undo
38 38
 	}
39 39
 
40 40
 	/**
41
-	* Get a list of keys of strings eligible to be merged together, grouped by suffix
42
-	*
43
-	* @param  array[] $strings
44
-	* @return array[]
45
-	*/
41
+	 * Get a list of keys of strings eligible to be merged together, grouped by suffix
42
+	 *
43
+	 * @param  array[] $strings
44
+	 * @return array[]
45
+	 */
46 46
 	protected function getEligibleStrings(array $strings)
47 47
 	{
48 48
 		$eligibleStrings = [];
Please login to merge, or discard this patch.
src/Passes/Recurse.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -12,32 +12,32 @@
 block discarded – undo
12 12
 class Recurse extends AbstractPass
13 13
 {
14 14
 	/**
15
-	* @var Runner
16
-	*/
15
+	 * @var Runner
16
+	 */
17 17
 	protected $runner;
18 18
 
19 19
 	/**
20
-	* @param Runner $runner
21
-	*/
20
+	 * @param Runner $runner
21
+	 */
22 22
 	public function __construct(Runner $runner)
23 23
 	{
24 24
 		$this->runner = $runner;
25 25
 	}
26 26
 
27 27
 	/**
28
-	* {@inheritdoc}
29
-	*/
28
+	 * {@inheritdoc}
29
+	 */
30 30
 	protected function processStrings(array $strings)
31 31
 	{
32 32
 		return array_map([$this, 'recurseString'], $strings);
33 33
 	}
34 34
 
35 35
 	/**
36
-	* Recurse into given string and run all passes on each element
37
-	*
38
-	* @param  array $string
39
-	* @return array
40
-	*/
36
+	 * Recurse into given string and run all passes on each element
37
+	 *
38
+	 * @param  array $string
39
+	 * @return array
40
+	 */
41 41
 	protected function recurseString(array $string)
42 42
 	{
43 43
 		foreach ($string as $k => $element)
Please login to merge, or discard this patch.