wp/wp-includes/customize/class-wp-customize-image-control.php
changeset 9 177826044cd9
parent 7 cf61fcea0001
child 16 a86126ab1dd4
--- a/wp/wp-includes/customize/class-wp-customize-image-control.php	Mon Oct 14 18:06:33 2019 +0200
+++ b/wp/wp-includes/customize/class-wp-customize-image-control.php	Mon Oct 14 18:28:13 2019 +0200
@@ -15,7 +15,7 @@
  * @see WP_Customize_Upload_Control
  */
 class WP_Customize_Image_Control extends WP_Customize_Upload_Control {
-	public $type = 'image';
+	public $type      = 'image';
 	public $mime_type = 'image';
 
 	/**
@@ -34,7 +34,7 @@
 	 */
 	public function add_tab( $id, $label, $callback ) {
 		_deprecated_function( __METHOD__, '4.1.0' );
-    }
+	}
 
 	/**
 	 * @since 3.4.0
@@ -44,7 +44,7 @@
 	 */
 	public function remove_tab( $id ) {
 		_deprecated_function( __METHOD__, '4.1.0' );
-    }
+	}
 
 	/**
 	 * @since 3.4.0
@@ -55,5 +55,5 @@
 	 */
 	public function print_tab_image( $url, $thumbnail_url = null ) {
 		_deprecated_function( __METHOD__, '4.1.0' );
-    }
+	}
 }