Completed
Pull Request — develop (#1283)
by Aristeides
07:17 queued 04:46
created
controls/typography/class-kirki-control-typography.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
 				if ( array_key_exists( $variant, $all_variants ) ) {
157 157
 					$available_variants[] = array(
158 158
 						'id' => $variant,
159
-						'label' => $all_variants[ $variant ],
159
+						'label' => $all_variants[$variant],
160 160
 					);
161 161
 				}
162 162
 			}
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
 				if ( array_key_exists( $subset, $all_subsets ) ) {
167 167
 					$available_subsets[] = array(
168 168
 						'id' => $subset,
169
-						'label' => $all_subsets[ $subset ],
169
+						'label' => $all_subsets[$subset],
170 170
 					);
171 171
 				}
172 172
 			}
@@ -471,7 +471,7 @@  discard block
 block discarded – undo
471 471
 		if ( false === $id ) {
472 472
 			return $translation_strings;
473 473
 		}
474
-		return $translation_strings[ $id ];
474
+		return $translation_strings[$id];
475 475
 	}
476 476
 
477 477
 	/**
Please login to merge, or discard this patch.
controls/background/class-kirki-control-background.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 
38 38
 		wp_enqueue_script( 'kirki-background', trailingslashit( Kirki::$url ) . 'controls/background/background.js', array( 'jquery', 'wp-color-picker-alpha' ) );
39 39
 		wp_enqueue_style( 'kirki-background', trailingslashit( Kirki::$url ) . 'controls/background/background.css', null );
40
-    }
40
+	}
41 41
 
42 42
 	/**
43 43
 	 * Refresh the parameters passed to the JavaScript via JSON.
Please login to merge, or discard this patch.