Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
PaymentNonceResponseValidator.php
Go to the documentation of this file.
1 <?php
7 
12 {
16  protected function getResponseValidators()
17  {
18  return array_merge(
19  parent::getResponseValidators(),
20  [
21  function ($response) {
22  return [
23  !empty($response->paymentMethodNonce) && !empty($response->paymentMethodNonce->nonce),
24  [__('Payment method nonce can\'t be retrieved.')]
25  ];
26  }
27  ]
28  );
29  }
30 }
$response
Definition: 404.php:11
__()
Definition: __.php:13