Completed
Pull Request — develop (#603)
by Zack
09:26 queued 04:53
created
includes/fields/class-gravityview-field-payment-method.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 
15 15
 	var $is_numeric = false;
16 16
 
17
-	var $search_operators = array( 'is', 'isnot' );
17
+	var $search_operators = array('is', 'isnot');
18 18
 
19 19
 	var $group = 'pricing';
20 20
 
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 	 * GravityView_Field_Date_Created constructor.
25 25
 	 */
26 26
 	public function __construct() {
27
-		$this->label = esc_attr__( 'Payment Method', 'gravityview' );
27
+		$this->label = esc_attr__('Payment Method', 'gravityview');
28 28
 		parent::__construct();
29 29
 	}
30 30
 }
Please login to merge, or discard this patch.
includes/fields/class-gravityview-field-payment-status.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 
13 13
 	var $is_searchable = true;
14 14
 
15
-	var $search_operators = array( 'is', 'in', 'not in', 'isnot' );
15
+	var $search_operators = array('is', 'in', 'not in', 'isnot');
16 16
 
17 17
 	var $group = 'pricing';
18 18
 
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 	 * GravityView_Field_Date_Created constructor.
23 23
 	 */
24 24
 	public function __construct() {
25
-		$this->label = esc_attr__( 'Payment Status', 'gravityview' );
25
+		$this->label = esc_attr__('Payment Status', 'gravityview');
26 26
 		parent::__construct();
27 27
 	}
28 28
 }
Please login to merge, or discard this patch.
templates/fields/payment_amount.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Payment Amount entry meta value
4
- *
5
- * @file payment_amount.php
6
- * @package GravityView
7
- * @subpackage templates\fields
8
- */
3
+	 * Payment Amount entry meta value
4
+	 *
5
+	 * @file payment_amount.php
6
+	 * @package GravityView
7
+	 * @subpackage templates\fields
8
+	 */
9 9
 
10 10
 $entry = GravityView_View::getInstance()->getCurrentEntry();
11 11
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,6 +9,6 @@
 block discarded – undo
9 9
 
10 10
 $entry = GravityView_View::getInstance()->getCurrentEntry();
11 11
 
12
-$value = rgar( $entry, 'payment_amount' );
12
+$value = rgar($entry, 'payment_amount');
13 13
 
14
-echo GFCommon::to_money( $value, rgar( $entry, 'currency' ) );
14
+echo GFCommon::to_money($value, rgar($entry, 'currency'));
Please login to merge, or discard this patch.