Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
PaymentAdditionalInformationProvider.php
Go to the documentation of this file.
1 <?php
7 
11 
16 {
20  private $getPaymentNonceCommand;
21 
26  public function __construct(GetPaymentNonceCommand $getPaymentNonceCommand)
27  {
28  $this->getPaymentNonceCommand = $getPaymentNonceCommand;
29  }
30 
35  {
36  $paymentMethodNonce = $this->getPaymentNonceCommand->execute([
39  ])->get()['paymentMethodNonce'];
40 
41  return [
42  'payment_method_nonce' => $paymentMethodNonce,
43  ];
44  }
45 }