Completed
Pull Request — develop (#1492)
by Zack
28:58 queued 09:00
created
src/Standards/Generic/Tests/CodeAnalysis/EmptyPHPStatementUnitTest.inc 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 function_call(); // OK.
7 7
 
8 8
 // The below examples are all bad.
9
-function_call();;
9
+function_call(); ;
10 10
 
11 11
 function_call();
12 12
 ;
@@ -15,10 +15,10 @@  discard block
 block discarded – undo
15 15
 /* some comment */;
16 16
 
17 17
 function_call();
18
-/* some comment */     ;
18
+/* some comment */;
19 19
 
20 20
 ?>
21
-<input name="<?php ; something_else(); ?>" />
21
+<input name="<?php; something_else(); ?>" />
22 22
 <input name="<?php something_else(); ; ?>" />
23 23
 
24 24
 /*
@@ -40,14 +40,14 @@  discard block
 block discarded – undo
40 40
  * Test detecting & fixing a combination of the two above checks.
41 41
  */
42 42
 -->
43
-<?php ; ?>
43
+<?php; ?>
44 44
 
45
-<input name="<?php ; ?>" /> <!-- Bad. -->
45
+<input name="<?php; ?>" /> <!-- Bad. -->
46 46
 
47 47
 <!-- Tests with short open echo tag. -->
48 48
 <input name="<?= 'some text' ?>" /> <!-- OK. -->
49 49
 <input name="<?= ?>" /> <!-- Bad. -->
50
-<input name="<?= ; ?>" /> <!-- Bad. -->
50
+<input name="<?=; ?>" /> <!-- Bad. -->
51 51
 
52 52
 <?php
53 53
 // Guard against false positives for two consecutive semi-colons in a for statement.
Please login to merge, or discard this patch.
Standards/Generic/Tests/CodeAnalysis/UselessOverridingMethodUnitTest.php 3 patches
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 [];
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
-            4  => 1,
45
-            16 => 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 [];
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
+			4  => 1,
45
+			16 => 1,
46
+		];
47
+
48
+	}//end getWarningList()
49 49
 
50 50
 
51 51
 }//end class
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -11,8 +11,7 @@  discard block
 block discarded – undo
11 11
 
12 12
 use PHP_CodeSniffer\Tests\Standards\AbstractSniffUnitTest;
13 13
 
14
-class UselessOverridingMethodUnitTest extends AbstractSniffUnitTest
15
-{
14
+class UselessOverridingMethodUnitTest extends AbstractSniffUnitTest {
16 15
 
17 16
 
18 17
     /**
@@ -23,8 +22,7 @@  discard block
 block discarded – undo
23 22
      *
24 23
      * @return array<int, int>
25 24
      */
26
-    public function getErrorList()
27
-    {
25
+    public function getErrorList() {
28 26
         return [];
29 27
 
30 28
     }//end getErrorList()
@@ -38,8 +36,7 @@  discard block
 block discarded – undo
38 36
      *
39 37
      * @return array<int, int>
40 38
      */
41
-    public function getWarningList()
42
-    {
39
+    public function getWarningList() {
43 40
         return [
44 41
             4  => 1,
45 42
             16 => 1,
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     public function getErrorList()
27 27
     {
28
-        return [];
28
+        return [ ];
29 29
 
30 30
     }//end getErrorList()
31 31
 
Please login to merge, or discard this patch.
src/Standards/Generic/Tests/CodeAnalysis/EmptyPHPStatementUnitTest.php 3 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
-     * @return array<int, int>
25
-     */
26
-    public function getErrorList()
27
-    {
28
-        return [];
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
-            9  => 1,
45
-            12 => 1,
46
-            15 => 1,
47
-            18 => 1,
48
-            21 => 1,
49
-            22 => 1,
50
-            31 => 1,
51
-            33 => 1,
52
-            43 => 1,
53
-            45 => 1,
54
-            49 => 1,
55
-            50 => 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
+	 * @return array<int, int>
25
+	 */
26
+	public function getErrorList()
27
+	{
28
+		return [];
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
+			9  => 1,
45
+			12 => 1,
46
+			15 => 1,
47
+			18 => 1,
48
+			21 => 1,
49
+			22 => 1,
50
+			31 => 1,
51
+			33 => 1,
52
+			43 => 1,
53
+			45 => 1,
54
+			49 => 1,
55
+			50 => 1,
56
+		];
57
+
58
+	}//end getWarningList()
59 59
 
60 60
 
61 61
 }//end class
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -11,8 +11,7 @@  discard block
 block discarded – undo
11 11
 
12 12
 use PHP_CodeSniffer\Tests\Standards\AbstractSniffUnitTest;
13 13
 
14
-class EmptyPHPStatementUnitTest extends AbstractSniffUnitTest
15
-{
14
+class EmptyPHPStatementUnitTest extends AbstractSniffUnitTest {
16 15
 
17 16
 
18 17
     /**
@@ -23,8 +22,7 @@  discard block
 block discarded – undo
23 22
      *
24 23
      * @return array<int, int>
25 24
      */
26
-    public function getErrorList()
27
-    {
25
+    public function getErrorList() {
28 26
         return [];
29 27
 
30 28
     }//end getErrorList()
@@ -38,8 +36,7 @@  discard block
 block discarded – undo
38 36
      *
39 37
      * @return array<int, int>
40 38
      */
41
-    public function getWarningList()
42
-    {
39
+    public function getWarningList() {
43 40
         return [
44 41
             9  => 1,
45 42
             12 => 1,
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     public function getErrorList()
27 27
     {
28
-        return [];
28
+        return [ ];
29 29
 
30 30
     }//end getErrorList()
31 31
 
Please login to merge, or discard this patch.
Generic/Tests/CodeAnalysis/ForLoopWithTestFunctionCallUnitTest.inc 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,14 +2,14 @@
 block discarded – undo
2 2
 
3 3
 $a = array(1, 2, 3, 4);
4 4
 for ($i = 0; $i < count($a); $i++) {
5
-    $a[$i] *= $i;
5
+	$a[$i] *= $i;
6 6
 }
7 7
 
8 8
 for ($i = 0, $c = sizeof($a); $i < $c; ++$i) {
9
-    $a[$i] *= $i;
9
+	$a[$i] *= $i;
10 10
 }
11 11
 
12 12
 $it = new ArrayIterator($a);
13 13
 for ($it->rewind(); $it->valid(); $it->next()) {
14
-    echo $it->current();
14
+	echo $it->current();
15 15
 }
16 16
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-$a = array(1, 2, 3, 4);
4
-for ($i = 0; $i < count($a); $i++) {
5
-    $a[$i] *= $i;
3
+$a = array( 1, 2, 3, 4 );
4
+for ( $i = 0; $i < count( $a ); $i++ ) {
5
+    $a[ $i ] *= $i;
6 6
 }
7 7
 
8
-for ($i = 0, $c = sizeof($a); $i < $c; ++$i) {
9
-    $a[$i] *= $i;
8
+for ( $i = 0, $c = sizeof( $a ); $i < $c; ++$i ) {
9
+    $a[ $i ] *= $i;
10 10
 }
11 11
 
12
-$it = new ArrayIterator($a);
13
-for ($it->rewind(); $it->valid(); $it->next()) {
12
+$it = new ArrayIterator( $a );
13
+for ( $it->rewind(); $it->valid(); $it->next() ) {
14 14
     echo $it->current();
15 15
 }
16 16
\ No newline at end of file
Please login to merge, or discard this patch.
Standards/Generic/Tests/CodeAnalysis/UnnecessaryFinalModifierUnitTest.php 3 patches
Indentation   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -15,39 +15,39 @@
 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
-
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
-            11 => 1,
45
-            12 => 1,
46
-            15 => 1,
47
-            18 => 1,
48
-        ];
49
-
50
-    }//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
+
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
+			11 => 1,
45
+			12 => 1,
46
+			15 => 1,
47
+			18 => 1,
48
+		];
49
+
50
+	}//end getWarningList()
51 51
 
52 52
 
53 53
 }//end class
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -11,8 +11,7 @@  discard block
 block discarded – undo
11 11
 
12 12
 use PHP_CodeSniffer\Tests\Standards\AbstractSniffUnitTest;
13 13
 
14
-class UnnecessaryFinalModifierUnitTest extends AbstractSniffUnitTest
15
-{
14
+class UnnecessaryFinalModifierUnitTest extends AbstractSniffUnitTest {
16 15
 
17 16
 
18 17
     /**
@@ -23,8 +22,7 @@  discard block
 block discarded – undo
23 22
      *
24 23
      * @return array<int, int>
25 24
      */
26
-    public function getErrorList()
27
-    {
25
+    public function getErrorList() {
28 26
         return [];
29 27
 
30 28
     }//end getErrorList()
@@ -38,8 +36,7 @@  discard block
 block discarded – undo
38 36
      *
39 37
      * @return array<int, int>
40 38
      */
41
-    public function getWarningList()
42
-    {
39
+    public function getWarningList() {
43 40
         return [
44 41
             11 => 1,
45 42
             12 => 1,
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     public function getErrorList()
27 27
     {
28
-        return [];
28
+        return [ ];
29 29
 
30 30
     }//end getErrorList()
31 31
 
Please login to merge, or discard this patch.
Standards/Generic/Tests/CodeAnalysis/ForLoopShouldBeWhileLoopUnitTest.inc 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 for ($i = 0; $i < 10; $i++) {
3
-    // Everything is fine
3
+	// Everything is fine
4 4
 }
5 5
 
6 6
 for (; $it->valid();) {
7
-    $it->next();
7
+	$it->next();
8 8
 }
9 9
 
10 10
 for (;(($it1->valid() && $foo) || (!$it2->value && ($bar || false)));/*Could be ignored*/) {
11
-    $it1->next();
12
-    $it2->next();
11
+	$it1->next();
12
+	$it2->next();
13 13
 }
14 14
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2
-for ($i = 0; $i < 10; $i++) {
2
+for ( $i = 0; $i < 10; $i++ ) {
3 3
     // Everything is fine
4 4
 }
5 5
 
6
-for (; $it->valid();) {
6
+for ( ; $it->valid(); ) {
7 7
     $it->next();
8 8
 }
9 9
 
10
-for (;(($it1->valid() && $foo) || (!$it2->value && ($bar || false)));/*Could be ignored*/) {
10
+for ( ;( ( $it1->valid() && $foo ) || ( ! $it2->value && ( $bar || false ) ) ); /*Could be ignored*/ ) {
11 11
     $it1->next();
12 12
     $it2->next();
13 13
 }
14 14
\ No newline at end of file
Please login to merge, or discard this patch.
Standards/Generic/Tests/CodeAnalysis/UnconditionalIfStatementUnitTest.inc 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (true) {
3
+if ( true ) {
4 4
 
5
-} else if (false) {
5
+} else if ( false ) {
6 6
     
7
-} elseif (true) {
7
+} elseif ( true ) {
8 8
     
9 9
 }
10 10
 
11
-if (file_exists(__FILE__) === true) {
11
+if ( file_exists( __FILE__ ) === true ) {
12 12
     
13 13
 }
14 14
\ No newline at end of file
Please login to merge, or discard this patch.
src/Standards/Generic/Tests/CodeAnalysis/EmptyStatementUnitTest.inc 4 patches
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -1,72 +1,72 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 switch ($foo) {
4
-    // Empty switch statement body 
4
+	// Empty switch statement body 
5 5
 }
6 6
 
7 7
 switch ($foo) {
8
-    case 'bar':
9
-        break;
10
-    default:
11
-        break;
8
+	case 'bar':
9
+		break;
10
+	default:
11
+		break;
12 12
 }
13 13
 
14 14
 
15 15
 if ($foo) {
16
-    // Just a comment
16
+	// Just a comment
17 17
 } elseif ($bar) {
18
-    // Yet another comment 
18
+	// Yet another comment 
19 19
 } else {
20 20
     
21 21
 }
22 22
 
23 23
 if ($foo) {
24
-    $foo = 'bar';
24
+	$foo = 'bar';
25 25
 } else if ($bar) {
26
-    $bar = 'foo';
26
+	$bar = 'foo';
27 27
 }
28 28
 
29 29
 for ($i = 0; $i < 10; $i++) {
30
-    for ($j = 0; $j < 10; $j++) {
31
-        // Just a comment
32
-    }
30
+	for ($j = 0; $j < 10; $j++) {
31
+		// Just a comment
32
+	}
33 33
 }
34 34
 
35 35
 foreach ($foo as $bar) {}
36 36
 
37 37
 foreach ($foo as $bar) {
38
-    $bar *= 2;
38
+	$bar *= 2;
39 39
 }
40 40
 
41 41
 do {
42
-    // Just a comment
43
-    // Just another comment
42
+	// Just a comment
43
+	// Just another comment
44 44
 } while ($foo);
45 45
 
46 46
 do {
47
-    while ($bar) {
47
+	while ($bar) {
48 48
         
49
-    }
49
+	}
50 50
 } while (true);
51 51
 
52 52
 while ($foo) { /* Comment in the same line */ }
53 53
 
54 54
 while ($foo) {
55
-    try {
55
+	try {
56 56
         
57
-    } catch (Exception $e) {
58
-        echo $e->getTraceAsString();
59
-    }
57
+	} catch (Exception $e) {
58
+		echo $e->getTraceAsString();
59
+	}
60 60
 }
61 61
 
62 62
 try {
63
-    throw Exception('Error...');
63
+	throw Exception('Error...');
64 64
 } catch (Exception $e) {}
65 65
 
66 66
 try {
67
-    throw Exception('Error...');
67
+	throw Exception('Error...');
68 68
 } catch (Exception $e) {
69
-    // TODO: Handle this exception later :-)
69
+	// TODO: Handle this exception later :-)
70 70
 }
71 71
 
72 72
 if (true) {} elseif (false) {}
73 73
\ No newline at end of file
Please login to merge, or discard this patch.
Switch Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,10 +5,10 @@
 block discarded – undo
5 5
 }
6 6
 
7 7
 switch ($foo) {
8
-    case 'bar':
9
-        break;
10
-    default:
11
-        break;
8
+    	case 'bar':
9
+        	break;
10
+    	default:
11
+        	break;
12 12
 }
13 13
 
14 14
 
Please login to merge, or discard this patch.
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-switch ($foo) {
3
+switch ( $foo ) {
4 4
     // Empty switch statement body 
5 5
 }
6 6
 
7
-switch ($foo) {
7
+switch ( $foo ) {
8 8
     case 'bar':
9 9
         break;
10 10
     default:
@@ -12,61 +12,61 @@  discard block
 block discarded – undo
12 12
 }
13 13
 
14 14
 
15
-if ($foo) {
15
+if ( $foo ) {
16 16
     // Just a comment
17
-} elseif ($bar) {
17
+} elseif ( $bar ) {
18 18
     // Yet another comment 
19 19
 } else {
20 20
     
21 21
 }
22 22
 
23
-if ($foo) {
23
+if ( $foo ) {
24 24
     $foo = 'bar';
25
-} else if ($bar) {
25
+} else if ( $bar ) {
26 26
     $bar = 'foo';
27 27
 }
28 28
 
29
-for ($i = 0; $i < 10; $i++) {
30
-    for ($j = 0; $j < 10; $j++) {
29
+for ( $i = 0; $i < 10; $i++ ) {
30
+    for ( $j = 0; $j < 10; $j++ ) {
31 31
         // Just a comment
32 32
     }
33 33
 }
34 34
 
35
-foreach ($foo as $bar) {}
35
+foreach ( $foo as $bar ) {}
36 36
 
37
-foreach ($foo as $bar) {
37
+foreach ( $foo as $bar ) {
38 38
     $bar *= 2;
39 39
 }
40 40
 
41 41
 do {
42 42
     // Just a comment
43 43
     // Just another comment
44
-} while ($foo);
44
+} while ( $foo );
45 45
 
46 46
 do {
47
-    while ($bar) {
47
+    while ( $bar ) {
48 48
         
49 49
     }
50
-} while (true);
50
+} while ( true );
51 51
 
52
-while ($foo) { /* Comment in the same line */ }
52
+while ( $foo ) { /* Comment in the same line */ }
53 53
 
54
-while ($foo) {
54
+while ( $foo ) {
55 55
     try {
56 56
         
57
-    } catch (Exception $e) {
57
+    } catch ( Exception $e ) {
58 58
         echo $e->getTraceAsString();
59 59
     }
60 60
 }
61 61
 
62 62
 try {
63
-    throw Exception('Error...');
64
-} catch (Exception $e) {}
63
+    throw Exception( 'Error...' );
64
+} catch ( Exception $e ) {}
65 65
 
66 66
 try {
67
-    throw Exception('Error...');
68
-} catch (Exception $e) {
67
+    throw Exception( 'Error...' );
68
+} catch ( Exception $e ) {
69 69
     // TODO: Handle this exception later :-)
70 70
 }
71 71
 
72
-if (true) {} elseif (false) {}
73 72
\ No newline at end of file
73
+if ( true ) {} elseif ( false ) {}
74 74
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,8 @@
 block discarded – undo
49 49
     }
50 50
 } while (true);
51 51
 
52
-while ($foo) { /* Comment in the same line */ }
52
+while ($foo) {
53
+/* Comment in the same line */ }
53 54
 
54 55
 while ($foo) {
55 56
     try {
Please login to merge, or discard this patch.
Standards/Generic/Tests/CodeAnalysis/UselessOverridingMethodUnitTest.inc 2 patches
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,25 +1,25 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 class FooBar {
4
-    public function __construct($a, $b) {
5
-        parent::__construct($a, $b);
6
-    }
4
+	public function __construct($a, $b) {
5
+		parent::__construct($a, $b);
6
+	}
7 7
 }
8 8
 
9 9
 class BarFoo {
10
-    public function __construct($a, $b) {
11
-        parent::__construct($a, 'XML', $b);
12
-    }
10
+	public function __construct($a, $b) {
11
+		parent::__construct($a, 'XML', $b);
12
+	}
13 13
 }
14 14
 
15 15
 class Foo {
16
-    public function export($a, $b = null) {
17
-        return parent::export($a, $b);
18
-    }
16
+	public function export($a, $b = null) {
17
+		return parent::export($a, $b);
18
+	}
19 19
 }
20 20
 
21 21
 class Bar {
22
-    public function export($a, $b = null) {
23
-        return parent::export($a);
24
-    }
22
+	public function export($a, $b = null) {
23
+		return parent::export($a);
24
+	}
25 25
 }
26 26
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,25 +1,25 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 class FooBar {
4
-    public function __construct($a, $b) {
5
-        parent::__construct($a, $b);
4
+    public function __construct( $a, $b ) {
5
+        parent::__construct( $a, $b );
6 6
     }
7 7
 }
8 8
 
9 9
 class BarFoo {
10
-    public function __construct($a, $b) {
11
-        parent::__construct($a, 'XML', $b);
10
+    public function __construct( $a, $b ) {
11
+        parent::__construct( $a, 'XML', $b );
12 12
     }
13 13
 }
14 14
 
15 15
 class Foo {
16
-    public function export($a, $b = null) {
17
-        return parent::export($a, $b);
16
+    public function export( $a, $b = null ) {
17
+        return parent::export( $a, $b );
18 18
     }
19 19
 }
20 20
 
21 21
 class Bar {
22
-    public function export($a, $b = null) {
23
-        return parent::export($a);
22
+    public function export( $a, $b = null ) {
23
+        return parent::export( $a );
24 24
     }
25 25
 }
26 26
\ No newline at end of file
Please login to merge, or discard this patch.