Completed
Pull Request — develop (#1515)
by
unknown
03:04
created
field/class-kirki-field-code.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,8 +87,8 @@
 block discarded – undo
87 87
 			'monokai'     => 'monokai',
88 88
 			'material'    => 'material',
89 89
 		);
90
-		if ( isset( $valid_themes[ $this->choices['theme'] ] ) ) {
91
-			$this->choices['theme'] = $valid_themes[ $this->choices['theme'] ];
90
+		if ( isset( $valid_themes[$this->choices['theme']] ) ) {
91
+			$this->choices['theme'] = $valid_themes[$this->choices['theme']];
92 92
 		} else {
93 93
 			$this->choices['theme'] = 'elegant';
94 94
 		}
Please login to merge, or discard this patch.
core/class-kirki-config.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 		foreach ( $args as $key => $value ) {
105 105
 			// Is this property whitelisted?
106 106
 			if ( property_exists( $this, $key ) ) {
107
-				$args[ $key ] = $value;
107
+				$args[$key] = $value;
108 108
 			}
109 109
 		}
110 110
 
@@ -141,10 +141,10 @@  discard block
 block discarded – undo
141 141
 		$id = ( '' === $id ) ? 'global' : $id;
142 142
 
143 143
 		$id_md5 = md5( $id );
144
-		if ( ! isset( self::$instances[ $id_md5 ] ) ) {
145
-			self::$instances[ $id_md5 ] = new self( $id, $args );
144
+		if ( ! isset( self::$instances[$id_md5] ) ) {
145
+			self::$instances[$id_md5] = new self( $id, $args );
146 146
 		}
147
-		return self::$instances[ $id_md5 ];
147
+		return self::$instances[$id_md5];
148 148
 
149 149
 	}
150 150
 
Please login to merge, or discard this patch.
core/class-kirki-active-callback.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,11 +26,11 @@
 block discarded – undo
26 26
 		$fields = Kirki::$fields;
27 27
 
28 28
 		// Make sure the current object matches a registered field.
29
-		if ( ! isset( $object->setting->id ) || ! isset( $fields[ $object->setting->id ] ) ) {
29
+		if ( ! isset( $object->setting->id ) || ! isset( $fields[$object->setting->id] ) ) {
30 30
 			return true;
31 31
 		}
32 32
 
33
-		$field = $fields[ $object->setting->id ];
33
+		$field = $fields[$object->setting->id];
34 34
 
35 35
 		if ( isset( $field['required'] ) ) {
36 36
 
Please login to merge, or discard this patch.
field/class-kirki-field-dimensions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
 		// Sanitize each sub-value separately.
54 54
 		foreach ( $value as $key => $sub_value ) {
55
-			$value[ $key ] = Kirki_Sanitize_Values::css_dimension( $sub_value );
55
+			$value[$key] = Kirki_Sanitize_Values::css_dimension( $sub_value );
56 56
 		}
57 57
 		return $value;
58 58
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 		$this->choices['controls'] = array();
70 70
 		if ( is_array( $this->default ) ) {
71 71
 			foreach ( $this->default as $key => $value ) {
72
-				$this->choices['controls'][ $key ] = true;
72
+				$this->choices['controls'][$key] = true;
73 73
 			}
74 74
 		}
75 75
 	}
Please login to merge, or discard this patch.
modules/icons/class-kirki-modules-icons.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 	 */
50 50
 	public function add_icon( $id, $icon, $context = 'section' ) {
51 51
 
52
-		self::$icons[ $context ][ $id ] = trim( $icon );
52
+		self::$icons[$context][$id] = trim( $icon );
53 53
 
54 54
 	}
55 55
 
Please login to merge, or discard this patch.
field/class-kirki-field-spacing.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
 
53 53
 		// Sanitize each sub-value separately.
54 54
 		foreach ( $value as $key => $sub_value ) {
55
-			$value[ $key ] = Kirki_Sanitize_Values::css_dimension( $sub_value );
55
+			$value[$key] = Kirki_Sanitize_Values::css_dimension( $sub_value );
56 56
 		}
57 57
 		return $value;
58 58
 
Please login to merge, or discard this patch.
core/class-kirki-section.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 		$section_classname = 'WP_Customize_Section';
51 51
 
52 52
 		if ( isset( $args['type'] ) && array_key_exists( $args['type'], $this->section_types ) ) {
53
-			$section_classname = $this->section_types[ $args['type'] ];
53
+			$section_classname = $this->section_types[$args['type']];
54 54
 		}
55 55
 
56 56
 		// Add the section.
Please login to merge, or discard this patch.
core/class-kirki-panel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 		if ( ! isset( $args['type'] ) || ! array_key_exists( $args['type'], $this->panel_types ) ) {
50 50
 			$args['type'] = 'default';
51 51
 		}
52
-		$panel_classname = $this->panel_types[ $args['type'] ];
52
+		$panel_classname = $this->panel_types[$args['type']];
53 53
 
54 54
 		$wp_customize->add_panel( new $panel_classname( $wp_customize, sanitize_key( $args['id'] ), $args ) );
55 55
 
Please login to merge, or discard this patch.
field/class-kirki-field-sortable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
 		}
53 53
 		$sanitized_value = array();
54 54
 		foreach ( $value as $sub_value ) {
55
-			if ( isset( $this->choices[ $sub_value ] ) ) {
55
+			if ( isset( $this->choices[$sub_value] ) ) {
56 56
 				$sanitized_value[] = esc_attr( $sub_value );
57 57
 			}
58 58
 		}
Please login to merge, or discard this patch.