Test Failed
Push — main ( dcc89f...30167a )
by Remco
17:45 queued 11:43
created
src/ResponseHeader.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 			\JsonSchema\Constraints\Constraint::CHECK_MODE_EXCEPTIONS
54 54
 		);
55 55
 
56
-        /* phpcs:disable WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase */
56
+		/* phpcs:disable WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase */
57 57
 		return new self( $object->requestTimestamp );
58 58
 	}
59 59
 
Please login to merge, or discard this patch.
src/Error.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
 			\JsonSchema\Constraints\Constraint::CHECK_MODE_EXCEPTIONS
61 61
 		);
62 62
 
63
-        /* phpcs:disable WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase */
63
+		/* phpcs:disable WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase */
64 64
 		return new self( $object->code, $object->message, $object->detailedMessage );
65 65
 	}
66 66
 
Please login to merge, or discard this patch.
tests/src/ResultCodeTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
 			array( ResultCode::WAITING, PaymentStatus::OPEN ),
55 55
 			array( ResultCode::PENDING, PaymentStatus::OPEN ),
56 56
 			array( ResultCode::TIMEOUT, PaymentStatus::EXPIRED ),
57
-			array( -1000, null ),
57
+			array( - 1000, null ),
58 58
 		);
59 59
 	}
60 60
 }
Please login to merge, or discard this patch.