Completed
Push — master ( e0e7fb...5987fc )
by
unknown
19:20
created
wps_statistics/templates/backend/wps_statistics_best_customers_count.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
 usort( $ordered_customers, function( $a, $b ) {
10 10
 	if ($a['count'] == $b['count']) {
11
-    return 0;
11
+	return 0;
12 12
   }
13 13
   return ($a['count'] > $b['count']) ? -1 : 1;
14 14
 } );
Please login to merge, or discard this patch.
wps_statistics/templates/backend/wps_statistics_best_customers_amount.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
 usort( $ordered_customers, function( $a, $b ) {
10 10
 	if ($a['total_amount'] == $b['total_amount']) {
11
-    return 0;
11
+	return 0;
12 12
   }
13 13
   return ($a['total_amount'] > $b['total_amount']) ? -1 : 1;
14 14
 } );
Please login to merge, or discard this patch.
modules/wps_statistics/templates/backend/wps_statistics_best_sales.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 }
20 20
 usort( $ordered_products, function( $a, $b ) {
21 21
 	if ($a['count'] == $b['count']) {
22
-    return 0;
22
+	return 0;
23 23
   }
24 24
   return ($a['count'] > $b['count']) ? -1 : 1;
25 25
 } );
Please login to merge, or discard this patch.
includes/modules/wps_statistics/controller/wps_statistics_ctr.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,8 @@
 block discarded – undo
19 19
 	}
20 20
 
21 21
 	/**
22
-	* Add Javascript & CSS files
23
-	*/
22
+	 * Add Javascript & CSS files
23
+	 */
24 24
 	function add_scripts( $hook ) {
25 25
 		global $current_screen;
26 26
 		if( ! in_array( $current_screen->post_type, array( WPSHOP_NEWTYPE_IDENTIFIER_CUSTOMERS ), true ) && $hook != 'wpshop_shop_order_page_wpshop_statistics' )
Please login to merge, or discard this patch.