Passed
Push — develop ( b405cd...984b92 )
by Remco
05:42
created
classes/DateTimeZone.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 	public static function get_default() {
31 31
 		$timezone_string = get_option( 'timezone_string' );
32 32
 
33
-		if ( ! empty( $timezone_string ) ) {
33
+		if ( !empty( $timezone_string ) ) {
34 34
 			return new DateTimeZone( $timezone_string );
35 35
 		}
36 36
 
Please login to merge, or discard this patch.
tests/Subscriptions/SubscriptionTest.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 	public function test_construct() {
26 26
 		$subscription = new Subscription();
27 27
 
28
-		$this->assertInstanceOf( __NAMESPACE__ . '\Subscription', $subscription );
28
+		$this->assertInstanceOf( __NAMESPACE__.'\Subscription', $subscription );
29 29
 	}
30 30
 
31 31
 	/**
@@ -43,9 +43,9 @@  discard block
 block discarded – undo
43 43
 
44 44
 	public function get_and_set_provider() {
45 45
 		return array(
46
-			array( 'set_id',             'get_id',             uniqid()    ),
47
-			array( 'set_status',         'get_status',         'completed' ),
48
-			array( 'set_transaction_id', 'get_transaction_id', uniqid()    ),
46
+			array( 'set_id', 'get_id', uniqid() ),
47
+			array( 'set_status', 'get_status', 'completed' ),
48
+			array( 'set_transaction_id', 'get_transaction_id', uniqid() ),
49 49
 		);
50 50
 	}
51 51
 
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 		return array(
67 67
 			array( 'set_consumer_name', 'consumer_name', 'John Doe' ),
68 68
 			array( 'set_consumer_iban', 'consumer_iban', 'NL56 RABO 0108 6347 79' ),
69
-			array( 'set_consumer_bic',  'consumer_bic',  'RABONL2U' ),
69
+			array( 'set_consumer_bic', 'consumer_bic', 'RABONL2U' ),
70 70
 		);
71 71
 	}
72 72
 
@@ -85,15 +85,15 @@  discard block
 block discarded – undo
85 85
 
86 86
 	public function get_provider() {
87 87
 		return array(
88
-			array( 'key',                 'get_key',             uniqid() ),
89
-			array( 'source',              'get_source',          'woocommerce' ),
90
-			array( 'source_id',           'get_source_id',       '1234' ),
91
-			array( 'frequency',           'get_frequency',       'daily' ),
92
-			array( 'interval',            'get_interval',        '1' ),
93
-			array( 'interval_period',     'get_interval_period', 'Y' ),
94
-			array( 'description',         'get_description',     'Lorem ipsum dolor sit amet, consectetur.' ),
95
-			array( 'currency',            'get_currency',        'EUR' ),
96
-			array( 'amount',              'get_amount',          89.95 ),
88
+			array( 'key', 'get_key', uniqid() ),
89
+			array( 'source', 'get_source', 'woocommerce' ),
90
+			array( 'source_id', 'get_source_id', '1234' ),
91
+			array( 'frequency', 'get_frequency', 'daily' ),
92
+			array( 'interval', 'get_interval', '1' ),
93
+			array( 'interval_period', 'get_interval_period', 'Y' ),
94
+			array( 'description', 'get_description', 'Lorem ipsum dolor sit amet, consectetur.' ),
95
+			array( 'currency', 'get_currency', 'EUR' ),
96
+			array( 'amount', 'get_amount', 89.95 ),
97 97
 		);
98 98
 	}
99 99
 
Please login to merge, or discard this patch.