File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
dev/tests/api-functional/testsuite/Magento/Sales/Service/V1 Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ final class Vault implements VaultPaymentInterface
114
114
* @param PaymentTokenManagementInterface $tokenManagement
115
115
* @param OrderPaymentExtensionInterfaceFactory $paymentExtensionFactory
116
116
* @param string $code
117
+ * @SuppressWarnings(PHPMD.ExcessiveParameterList)
117
118
*/
118
119
public function __construct (
119
120
ConfigInterface $ config ,
Original file line number Diff line number Diff line change 18
18
use Magento \Vault \Model \Method \Vault ;
19
19
use Magento \Vault \Model \VaultPaymentInterface ;
20
20
21
+ /**
22
+ * Class VaultTest
23
+ * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
24
+ */
21
25
class VaultTest extends \PHPUnit_Framework_TestCase
22
26
{
23
27
/**
Original file line number Diff line number Diff line change @@ -80,7 +80,8 @@ public function testOrderList()
80
80
// check what additional information is single dimension array
81
81
static ::assertEquals (
82
82
count ($ item ['payment ' ]['additional_information ' ]),
83
- count ($ item ['payment ' ]['additional_information ' ]), COUNT_RECURSIVE
83
+ count ($ item ['payment ' ]['additional_information ' ]),
84
+ COUNT_RECURSIVE
84
85
);
85
86
}
86
87
}
You can’t perform that action at this time.
0 commit comments