Completed
Branch BUG/required-message-fields (8f9492)
by
unknown
10:53 queued 20s
created
src/Standards/Generic/Tests/Functions/CallTimePassByReferenceUnitTest.php 1 patch
Indentation   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -15,41 +15,41 @@
 block discarded – undo
15 15
 {
16 16
 
17 17
 
18
-    /**
19
-     * Returns the lines where errors should occur.
20
-     *
21
-     * The key of the array should represent the line number and the value
22
-     * should represent the number of errors that should occur on that line.
23
-     *
24
-     * @return array<int, int>
25
-     */
26
-    public function getErrorList()
27
-    {
28
-        return [
29
-            9  => 1,
30
-            12 => 1,
31
-            15 => 1,
32
-            18 => 2,
33
-            23 => 1,
34
-            30 => 1,
35
-        ];
36
-
37
-    }//end getErrorList()
38
-
39
-
40
-    /**
41
-     * Returns the lines where warnings should occur.
42
-     *
43
-     * The key of the array should represent the line number and the value
44
-     * should represent the number of warnings that should occur on that line.
45
-     *
46
-     * @return array<int, int>
47
-     */
48
-    public function getWarningList()
49
-    {
50
-        return [];
51
-
52
-    }//end getWarningList()
18
+	/**
19
+	 * Returns the lines where errors should occur.
20
+	 *
21
+	 * The key of the array should represent the line number and the value
22
+	 * should represent the number of errors that should occur on that line.
23
+	 *
24
+	 * @return array<int, int>
25
+	 */
26
+	public function getErrorList()
27
+	{
28
+		return [
29
+			9  => 1,
30
+			12 => 1,
31
+			15 => 1,
32
+			18 => 2,
33
+			23 => 1,
34
+			30 => 1,
35
+		];
36
+
37
+	}//end getErrorList()
38
+
39
+
40
+	/**
41
+	 * Returns the lines where warnings should occur.
42
+	 *
43
+	 * The key of the array should represent the line number and the value
44
+	 * should represent the number of warnings that should occur on that line.
45
+	 *
46
+	 * @return array<int, int>
47
+	 */
48
+	public function getWarningList()
49
+	{
50
+		return [];
51
+
52
+	}//end getWarningList()
53 53
 
54 54
 
55 55
 }//end class
Please login to merge, or discard this patch.
src/Standards/Generic/Tests/Functions/CallTimePassByReferenceUnitTest.inc 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 class myclass extends yourclass implements someint {
3
-    function myfunc($var) {
4
-        echo $var;
5
-    }
3
+	function myfunc($var) {
4
+		echo $var;
5
+	}
6 6
 }
7 7
 
8 8
 $myvar = true;
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 myclass::myfunc(&$myvar);
16 16
 myclass::myfunc($myvar);
17 17
 
18
-while(testfunc($var1, &$var2, $var3, &$var4) === false) {
18
+while (testfunc($var1, &$var2, $var3, &$var4) === false) {
19 19
 }
20 20
 
21 21
 sprintf("0%o", 0777 & $p);
@@ -25,15 +25,15 @@  discard block
 block discarded – undo
25 25
 if (is_array($foo = &$this->bar())) {
26 26
 }
27 27
 
28
-Hooks::run( 'SecondaryDataUpdates', [ $title, $old, $recursive, $parserOutput, &$updates ] );
28
+Hooks::run('SecondaryDataUpdates', [$title, $old, $recursive, $parserOutput, &$updates]);
29 29
 
30 30
 $foo = Bar(&$fooBar);
31 31
 
32
-myfunc($myvar&$myvar);
33
-myfunc($myvar[0]&$myvar);
32
+myfunc($myvar & $myvar);
33
+myfunc($myvar[0] & $myvar);
34 34
 
35
-myfunc(myclass::MY_CONST&$myvar);
36
-myfunc(MY_CONST&$myvar);
35
+myfunc(myclass::MY_CONST & $myvar);
36
+myfunc(MY_CONST & $myvar);
37 37
 
38
-efg( true == &$b );
39
-efg( true === &$b );
38
+efg(true == &$b);
39
+efg(true === &$b);
Please login to merge, or discard this patch.
php_codesniffer/src/Standards/Generic/Tests/Commenting/TodoUnitTest.php 2 patches
Indentation   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -15,47 +15,47 @@
 block discarded – undo
15 15
 {
16 16
 
17 17
 
18
-    /**
19
-     * Returns the lines where errors should occur.
20
-     *
21
-     * The key of the array should represent the line number and the value
22
-     * should represent the number of errors that should occur on that line.
23
-     *
24
-     * @param string $testFile The name of the file being tested.
25
-     *
26
-     * @return array<int, int>
27
-     */
28
-    public function getErrorList($testFile='TodoUnitTest.inc')
29
-    {
30
-        return [];
31
-
32
-    }//end getErrorList()
33
-
34
-
35
-    /**
36
-     * Returns the lines where warnings should occur.
37
-     *
38
-     * The key of the array should represent the line number and the value
39
-     * should represent the number of warnings that should occur on that line.
40
-     *
41
-     * @param string $testFile The name of the file being tested.
42
-     *
43
-     * @return array<int, int>
44
-     */
45
-    public function getWarningList($testFile='TodoUnitTest.inc')
46
-    {
47
-        return [
48
-            3  => 1,
49
-            4  => 1,
50
-            7  => 1,
51
-            10 => 1,
52
-            13 => 1,
53
-            16 => 1,
54
-            18 => 1,
55
-            21 => 1,
56
-        ];
57
-
58
-    }//end getWarningList()
18
+	/**
19
+	 * Returns the lines where errors should occur.
20
+	 *
21
+	 * The key of the array should represent the line number and the value
22
+	 * should represent the number of errors that should occur on that line.
23
+	 *
24
+	 * @param string $testFile The name of the file being tested.
25
+	 *
26
+	 * @return array<int, int>
27
+	 */
28
+	public function getErrorList($testFile='TodoUnitTest.inc')
29
+	{
30
+		return [];
31
+
32
+	}//end getErrorList()
33
+
34
+
35
+	/**
36
+	 * Returns the lines where warnings should occur.
37
+	 *
38
+	 * The key of the array should represent the line number and the value
39
+	 * should represent the number of warnings that should occur on that line.
40
+	 *
41
+	 * @param string $testFile The name of the file being tested.
42
+	 *
43
+	 * @return array<int, int>
44
+	 */
45
+	public function getWarningList($testFile='TodoUnitTest.inc')
46
+	{
47
+		return [
48
+			3  => 1,
49
+			4  => 1,
50
+			7  => 1,
51
+			10 => 1,
52
+			13 => 1,
53
+			16 => 1,
54
+			18 => 1,
55
+			21 => 1,
56
+		];
57
+
58
+	}//end getWarningList()
59 59
 
60 60
 
61 61
 }//end class
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      *
26 26
      * @return array<int, int>
27 27
      */
28
-    public function getErrorList($testFile='TodoUnitTest.inc')
28
+    public function getErrorList($testFile = 'TodoUnitTest.inc')
29 29
     {
30 30
         return [];
31 31
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      *
43 43
      * @return array<int, int>
44 44
      */
45
-    public function getWarningList($testFile='TodoUnitTest.inc')
45
+    public function getWarningList($testFile = 'TodoUnitTest.inc')
46 46
     {
47 47
         return [
48 48
             3  => 1,
Please login to merge, or discard this patch.
php_codesniffer/src/Standards/Generic/Tests/Commenting/FixmeUnitTest.php 2 patches
Indentation   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -16,47 +16,47 @@
 block discarded – undo
16 16
 {
17 17
 
18 18
 
19
-    /**
20
-     * Returns the lines where errors should occur.
21
-     *
22
-     * The key of the array should represent the line number and the value
23
-     * should represent the number of errors that should occur on that line.
24
-     *
25
-     * @param string $testFile The name of the file being tested.
26
-     *
27
-     * @return array<int, int>
28
-     */
29
-    public function getErrorList($testFile='FixmeUnitTest.inc')
30
-    {
31
-        return [
32
-            3  => 1,
33
-            4  => 1,
34
-            7  => 1,
35
-            10 => 1,
36
-            13 => 1,
37
-            16 => 1,
38
-            18 => 1,
39
-            21 => 1,
40
-        ];
41
-
42
-    }//end getErrorList()
43
-
44
-
45
-    /**
46
-     * Returns the lines where warnings should occur.
47
-     *
48
-     * The key of the array should represent the line number and the value
49
-     * should represent the number of warnings that should occur on that line.
50
-     *
51
-     * @param string $testFile The name of the file being tested.
52
-     *
53
-     * @return array<int, int>
54
-     */
55
-    public function getWarningList($testFile='FixmeUnitTest.inc')
56
-    {
57
-        return [];
58
-
59
-    }//end getWarningList()
19
+	/**
20
+	 * Returns the lines where errors should occur.
21
+	 *
22
+	 * The key of the array should represent the line number and the value
23
+	 * should represent the number of errors that should occur on that line.
24
+	 *
25
+	 * @param string $testFile The name of the file being tested.
26
+	 *
27
+	 * @return array<int, int>
28
+	 */
29
+	public function getErrorList($testFile='FixmeUnitTest.inc')
30
+	{
31
+		return [
32
+			3  => 1,
33
+			4  => 1,
34
+			7  => 1,
35
+			10 => 1,
36
+			13 => 1,
37
+			16 => 1,
38
+			18 => 1,
39
+			21 => 1,
40
+		];
41
+
42
+	}//end getErrorList()
43
+
44
+
45
+	/**
46
+	 * Returns the lines where warnings should occur.
47
+	 *
48
+	 * The key of the array should represent the line number and the value
49
+	 * should represent the number of warnings that should occur on that line.
50
+	 *
51
+	 * @param string $testFile The name of the file being tested.
52
+	 *
53
+	 * @return array<int, int>
54
+	 */
55
+	public function getWarningList($testFile='FixmeUnitTest.inc')
56
+	{
57
+		return [];
58
+
59
+	}//end getWarningList()
60 60
 
61 61
 
62 62
 }//end class
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      *
27 27
      * @return array<int, int>
28 28
      */
29
-    public function getErrorList($testFile='FixmeUnitTest.inc')
29
+    public function getErrorList($testFile = 'FixmeUnitTest.inc')
30 30
     {
31 31
         return [
32 32
             3  => 1,
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      *
53 53
      * @return array<int, int>
54 54
      */
55
-    public function getWarningList($testFile='FixmeUnitTest.inc')
55
+    public function getWarningList($testFile = 'FixmeUnitTest.inc')
56 56
     {
57 57
         return [];
58 58
 
Please login to merge, or discard this patch.
src/Standards/Generic/Tests/Metrics/NestingLevelUnitTest.inc 1 patch
Indentation   +79 added lines, -79 removed lines patch added patch discarded remove patch
@@ -2,101 +2,101 @@
 block discarded – undo
2 2
 
3 3
 function nestingOne()
4 4
 {
5
-    if ($condition) {
6
-        echo 'hi';
7
-    }
5
+	if ($condition) {
6
+		echo 'hi';
7
+	}
8 8
 }
9 9
 
10 10
 function nestingFive()
11 11
 {
12
-    if ($condition) {
13
-        echo 'hi';
14
-        switch ($condition)
15
-        {
16
-            case '1':
17
-                if ($condition === '1') {
18
-                    if ($cond) {
19
-                        echo 'hi';
20
-                    }
21
-                }
22
-            break;
23
-        }
24
-    }
12
+	if ($condition) {
13
+		echo 'hi';
14
+		switch ($condition)
15
+		{
16
+			case '1':
17
+				if ($condition === '1') {
18
+					if ($cond) {
19
+						echo 'hi';
20
+					}
21
+				}
22
+			break;
23
+		}
24
+	}
25 25
 }
26 26
 
27 27
 function nestingSix()
28 28
 {
29
-    if ($condition) {
30
-        echo 'hi';
31
-        switch ($condition)
32
-        {
33
-            case '1':
34
-                if ($condition === '1') {
35
-                    if ($cond) {
36
-                        foreach ($conds as $cond) {
37
-                            echo 'hi';
38
-                        }
39
-                    }
40
-                }
41
-            break;
42
-        }
43
-    }
29
+	if ($condition) {
30
+		echo 'hi';
31
+		switch ($condition)
32
+		{
33
+			case '1':
34
+				if ($condition === '1') {
35
+					if ($cond) {
36
+						foreach ($conds as $cond) {
37
+							echo 'hi';
38
+						}
39
+					}
40
+				}
41
+			break;
42
+		}
43
+	}
44 44
 }
45 45
 
46 46
 function nestingTen()
47 47
 {
48
-    if ($condition) {
49
-        echo 'hi';
50
-        switch ($condition)
51
-        {
52
-            case '1':
53
-                if ($condition === '1') {
54
-                    if ($cond) {
55
-                        switch ($cond) {
56
-                            case '1':
57
-                                if ($cond === '1') {
58
-                                    foreach ($conds as $cond) {
59
-                                        if ($cond === 'hi') {
60
-                                            echo 'hi';
61
-                                        }
62
-                                    }
63
-                                }
64
-                            break;
65
-                        }
66
-                    }
67
-                }
68
-            break;
69
-        }
70
-    }
48
+	if ($condition) {
49
+		echo 'hi';
50
+		switch ($condition)
51
+		{
52
+			case '1':
53
+				if ($condition === '1') {
54
+					if ($cond) {
55
+						switch ($cond) {
56
+							case '1':
57
+								if ($cond === '1') {
58
+									foreach ($conds as $cond) {
59
+										if ($cond === 'hi') {
60
+											echo 'hi';
61
+										}
62
+									}
63
+								}
64
+							break;
65
+						}
66
+					}
67
+				}
68
+			break;
69
+		}
70
+	}
71 71
 }
72 72
 
73 73
 function nestingEleven()
74 74
 {
75
-    if ($condition) {
76
-        echo 'hi';
77
-        switch ($condition)
78
-        {
79
-            case '1':
80
-                if ($condition === '1') {
81
-                    if ($cond) {
82
-                        switch ($cond) {
83
-                            case '1':
84
-                                if ($cond === '1') {
85
-                                    foreach ($conds as $cond) {
86
-                                        if ($cond === 'hi') {
87
-                                            if ($cond !== 'bye') {
88
-                                                echo 'hi';
89
-                                            }
90
-                                        }
91
-                                    }
92
-                                }
93
-                            break;
94
-                        }
95
-                    }
96
-                }
97
-            break;
98
-        }
99
-    }
75
+	if ($condition) {
76
+		echo 'hi';
77
+		switch ($condition)
78
+		{
79
+			case '1':
80
+				if ($condition === '1') {
81
+					if ($cond) {
82
+						switch ($cond) {
83
+							case '1':
84
+								if ($cond === '1') {
85
+									foreach ($conds as $cond) {
86
+										if ($cond === 'hi') {
87
+											if ($cond !== 'bye') {
88
+												echo 'hi';
89
+											}
90
+										}
91
+									}
92
+								}
93
+							break;
94
+						}
95
+					}
96
+				}
97
+			break;
98
+		}
99
+	}
100 100
 }
101 101
 
102 102
 ?>
Please login to merge, or discard this patch.
src/Standards/Generic/Tests/Metrics/NestingLevelUnitTest.php 1 patch
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -15,37 +15,37 @@
 block discarded – undo
15 15
 {
16 16
 
17 17
 
18
-    /**
19
-     * Returns the lines where errors should occur.
20
-     *
21
-     * The key of the array should represent the line number and the value
22
-     * should represent the number of errors that should occur on that line.
23
-     *
24
-     * @return array<int, int>
25
-     */
26
-    public function getErrorList()
27
-    {
28
-        return [73 => 1];
29
-
30
-    }//end getErrorList()
31
-
32
-
33
-    /**
34
-     * Returns the lines where warnings should occur.
35
-     *
36
-     * The key of the array should represent the line number and the value
37
-     * should represent the number of warnings that should occur on that line.
38
-     *
39
-     * @return array<int, int>
40
-     */
41
-    public function getWarningList()
42
-    {
43
-        return [
44
-            27 => 1,
45
-            46 => 1,
46
-        ];
47
-
48
-    }//end getWarningList()
18
+	/**
19
+	 * Returns the lines where errors should occur.
20
+	 *
21
+	 * The key of the array should represent the line number and the value
22
+	 * should represent the number of errors that should occur on that line.
23
+	 *
24
+	 * @return array<int, int>
25
+	 */
26
+	public function getErrorList()
27
+	{
28
+		return [73 => 1];
29
+
30
+	}//end getErrorList()
31
+
32
+
33
+	/**
34
+	 * Returns the lines where warnings should occur.
35
+	 *
36
+	 * The key of the array should represent the line number and the value
37
+	 * should represent the number of warnings that should occur on that line.
38
+	 *
39
+	 * @return array<int, int>
40
+	 */
41
+	public function getWarningList()
42
+	{
43
+		return [
44
+			27 => 1,
45
+			46 => 1,
46
+		];
47
+
48
+	}//end getWarningList()
49 49
 
50 50
 
51 51
 }//end class
Please login to merge, or discard this patch.
src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.3.inc 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace A\B {
3
-    class MyClass {}
4
-    interface MyInterface {}
3
+	class MyClass {}
4
+	interface MyInterface {}
5 5
 }
6 6
 
7 7
 namespace D {
8
-    class MyClass {}
8
+	class MyClass {}
9 9
 }
10 10
 ?>
11 11
\ No newline at end of file
Please login to merge, or discard this patch.
src/Standards/Generic/Tests/Classes/OpeningBraceSameLineUnitTest.inc 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -52,30 +52,30 @@  discard block
 block discarded – undo
52 52
 
53 53
 // This is OK.
54 54
 class A_Class_With_Really_Long_Name
55
-    extends Another_Class_With_A_Really_Long_Name {
55
+	extends Another_Class_With_A_Really_Long_Name {
56 56
 
57 57
 }
58 58
 
59 59
 // This is OK too.
60 60
 class A_Class_With_Really_Long_Name_2
61
-    extends Another_Class_With_A_Really_Long_Name
62
-    implements Some_Interface_With_A_Long_Name,
63
-          Another_Interface_With_A_Long_Name {
61
+	extends Another_Class_With_A_Really_Long_Name
62
+	implements Some_Interface_With_A_Long_Name,
63
+		  Another_Interface_With_A_Long_Name {
64 64
 
65 65
 }
66 66
 
67 67
 // But this is not.
68 68
 class A_Class_With_Really_Long_Name_3
69
-    extends Another_Class_With_A_Really_Long_Name
69
+	extends Another_Class_With_A_Really_Long_Name
70 70
 	{
71 71
 
72 72
 }
73 73
 
74 74
 // Nor is this.
75 75
 class A_Class_With_Really_Long_Name_4
76
-    extends Another_Class_With_A_Really_Long_Name
77
-    implements Some_Interface_With_A_Long_Name,
78
-          Another_Interface_With_A_Long_Name
76
+	extends Another_Class_With_A_Really_Long_Name
77
+	implements Some_Interface_With_A_Long_Name,
78
+		  Another_Interface_With_A_Long_Name
79 79
 {
80 80
 
81 81
 }
@@ -86,6 +86,6 @@  discard block
 block discarded – undo
86 86
 
87 87
 // And this is not.
88 88
 class Test_Class_Bad_G
89
-    /*some comment*/
89
+	/*some comment*/
90 90
 {
91 91
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -35,16 +35,16 @@
 block discarded – undo
35 35
 }
36 36
 
37 37
 // These should all be flagged for wrong whitespace before opening brace.
38
-interface Test_Interface_Bad_C   {
38
+interface Test_Interface_Bad_C {
39 39
 }
40 40
 
41
-class Test_Class_Bad_G	{		
41
+class Test_Class_Bad_G {		
42 42
 }
43 43
 
44
-class Test_Class_Bad_H extends Test_Class_Bad_G			{
44
+class Test_Class_Bad_H extends Test_Class_Bad_G {
45 45
 }
46 46
 
47
-class Test_Class_Bad_I implements Test_Interface_Bad_C{
47
+class Test_Class_Bad_I implements Test_Interface_Bad_C {
48 48
 }
49 49
 
50 50
 // This one should be flagged as a potential parse error.
Please login to merge, or discard this patch.
src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.php 3 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      *
41 41
      * @return array<int, int>
42 42
      */
43
-    public function getWarningList($testFile='')
43
+    public function getWarningList($testFile = '')
44 44
     {
45 45
         switch ($testFile) {
46 46
         case 'DuplicateClassNameUnitTest.1.inc':
Please login to merge, or discard this patch.
Indentation   +55 added lines, -55 removed lines patch added patch discarded remove patch
@@ -15,65 +15,65 @@
 block discarded – undo
15 15
 {
16 16
 
17 17
 
18
-    /**
19
-     * Returns the lines where errors should occur.
20
-     *
21
-     * The key of the array should represent the line number and the value
22
-     * should represent the number of errors that should occur on that line.
23
-     *
24
-     * @return array<int, int>
25
-     */
26
-    public function getErrorList()
27
-    {
28
-        return [];
18
+	/**
19
+	 * Returns the lines where errors should occur.
20
+	 *
21
+	 * The key of the array should represent the line number and the value
22
+	 * should represent the number of errors that should occur on that line.
23
+	 *
24
+	 * @return array<int, int>
25
+	 */
26
+	public function getErrorList()
27
+	{
28
+		return [];
29 29
 
30
-    }//end getErrorList()
30
+	}//end getErrorList()
31 31
 
32 32
 
33
-    /**
34
-     * Returns the lines where warnings should occur.
35
-     *
36
-     * The key of the array should represent the line number and the value
37
-     * should represent the number of warnings that should occur on that line.
38
-     *
39
-     * @param string $testFile The name of the file being tested.
40
-     *
41
-     * @return array<int, int>
42
-     */
43
-    public function getWarningList($testFile='')
44
-    {
45
-        switch ($testFile) {
46
-        case 'DuplicateClassNameUnitTest.1.inc':
47
-            return [
48
-                10 => 1,
49
-                11 => 1,
50
-                12 => 1,
51
-                13 => 1,
52
-            ];
53
-            break;
54
-        case 'DuplicateClassNameUnitTest.2.inc':
55
-            return [
56
-                2 => 1,
57
-                3 => 1,
58
-                4 => 1,
59
-                5 => 1,
60
-            ];
61
-            break;
62
-        case 'DuplicateClassNameUnitTest.5.inc':
63
-            return [
64
-                3 => 1,
65
-                7 => 1,
66
-            ];
67
-            break;
68
-        case 'DuplicateClassNameUnitTest.6.inc':
69
-            return [10 => 1];
70
-            break;
71
-        default:
72
-            return [];
73
-            break;
74
-        }//end switch
33
+	/**
34
+	 * Returns the lines where warnings should occur.
35
+	 *
36
+	 * The key of the array should represent the line number and the value
37
+	 * should represent the number of warnings that should occur on that line.
38
+	 *
39
+	 * @param string $testFile The name of the file being tested.
40
+	 *
41
+	 * @return array<int, int>
42
+	 */
43
+	public function getWarningList($testFile='')
44
+	{
45
+		switch ($testFile) {
46
+		case 'DuplicateClassNameUnitTest.1.inc':
47
+			return [
48
+				10 => 1,
49
+				11 => 1,
50
+				12 => 1,
51
+				13 => 1,
52
+			];
53
+			break;
54
+		case 'DuplicateClassNameUnitTest.2.inc':
55
+			return [
56
+				2 => 1,
57
+				3 => 1,
58
+				4 => 1,
59
+				5 => 1,
60
+			];
61
+			break;
62
+		case 'DuplicateClassNameUnitTest.5.inc':
63
+			return [
64
+				3 => 1,
65
+				7 => 1,
66
+			];
67
+			break;
68
+		case 'DuplicateClassNameUnitTest.6.inc':
69
+			return [10 => 1];
70
+			break;
71
+		default:
72
+			return [];
73
+			break;
74
+		}//end switch
75 75
 
76
-    }//end getWarningList()
76
+	}//end getWarningList()
77 77
 
78 78
 
79 79
 }//end class
Please login to merge, or discard this patch.
Switch Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -43,34 +43,34 @@
 block discarded – undo
43 43
     public function getWarningList($testFile='')
44 44
     {
45 45
         switch ($testFile) {
46
-        case 'DuplicateClassNameUnitTest.1.inc':
47
-            return [
48
-                10 => 1,
49
-                11 => 1,
50
-                12 => 1,
51
-                13 => 1,
52
-            ];
53
-            break;
54
-        case 'DuplicateClassNameUnitTest.2.inc':
55
-            return [
56
-                2 => 1,
57
-                3 => 1,
58
-                4 => 1,
59
-                5 => 1,
60
-            ];
61
-            break;
62
-        case 'DuplicateClassNameUnitTest.5.inc':
63
-            return [
64
-                3 => 1,
65
-                7 => 1,
66
-            ];
67
-            break;
68
-        case 'DuplicateClassNameUnitTest.6.inc':
69
-            return [10 => 1];
70
-            break;
71
-        default:
72
-            return [];
73
-            break;
46
+        	case 'DuplicateClassNameUnitTest.1.inc':
47
+            	return [
48
+                	10 => 1,
49
+                	11 => 1,
50
+                	12 => 1,
51
+                	13 => 1,
52
+            	];
53
+            	break;
54
+        	case 'DuplicateClassNameUnitTest.2.inc':
55
+            	return [
56
+                	2 => 1,
57
+                	3 => 1,
58
+                	4 => 1,
59
+                	5 => 1,
60
+            	];
61
+            	break;
62
+        	case 'DuplicateClassNameUnitTest.5.inc':
63
+            	return [
64
+                	3 => 1,
65
+                	7 => 1,
66
+            	];
67
+            	break;
68
+        	case 'DuplicateClassNameUnitTest.6.inc':
69
+            	return [10 => 1];
70
+            	break;
71
+        	default:
72
+            	return [];
73
+            	break;
74 74
         }//end switch
75 75
 
76 76
     }//end getWarningList()
Please login to merge, or discard this patch.