Completed
Push — master ( e23be5...9cf38f )
by Scott Kingsley
02:09
created
tests/test-wp-fields-api.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Class WP_Test_Fields_API_Testcase
4
- *
5
- * @uses PHPUnit_Framework_TestCase
6
- */
3
+	 * Class WP_Test_Fields_API_Testcase
4
+	 *
5
+	 * @uses PHPUnit_Framework_TestCase
6
+	 */
7 7
 class WP_Test_Fields_API_Testcase extends WP_UnitTestCase {
8 8
 
9 9
 	public function tearDown() {
Please login to merge, or discard this patch.
tests/core/nav-menu-item-setting.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Tests WP_Customize_Nav_Menu_Item_Setting.
4
- *
5
- * @group customize
6
- */
3
+	 * Tests WP_Customize_Nav_Menu_Item_Setting.
4
+	 *
5
+	 * @group customize
6
+	 */
7 7
 class Test_WP_Customize_Nav_Menu_Item_Setting extends WP_UnitTestCase {
8 8
 
9 9
 	/**
Please login to merge, or discard this patch.
docs/examples/user/address.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 			'type'        => 'text',
70 70
 			'section'     => $section_id,
71 71
 			'label'       => __( 'State / Region', 'my-text-domain' ), // @todo Update text domain
72
-		    // You could use 'select' type instead and then
72
+			// You could use 'select' type instead and then
73 73
 			// pass in all states in 'choices' option with array( 'TX' => 'Texas' )
74 74
 		),
75 75
 	);
@@ -95,11 +95,11 @@  discard block
 block discarded – undo
95 95
 			'type'        => 'select',
96 96
 			'section'     => $section_id,
97 97
 			'label'       => __( 'Country', 'my-text-domain' ), // @todo Update text domain
98
-		    'choices' => array(
99
-			    'US' => 'United States',
100
-			    'CA' => 'Canada',
101
-			    // Add more here as needed, or use 'text' type instead for freeform
102
-		    ),
98
+			'choices' => array(
99
+				'US' => 'United States',
100
+				'CA' => 'Canada',
101
+				// Add more here as needed, or use 'text' type instead for freeform
102
+			),
103 103
 		),
104 104
 	);
105 105
 
Please login to merge, or discard this patch.