'Y', 'NM' => 'A', 'MN' => 'Z', 'NN' => 'N', 'UU' => 'U', 'II' => 'U', 'AA' => 'E' ]; /** * Gets payment AVS verification code. * * @param OrderPaymentInterface $orderPayment * @return string * @throws \InvalidArgumentException If specified order payment has different payment method code. */ public function getCode(OrderPaymentInterface $orderPayment) { if ($orderPayment->getMethod() !== ConfigProvider::CODE) { throw new \InvalidArgumentException( 'The "' . $orderPayment->getMethod() . '" does not supported by Braintree AVS mapper.' ); } $additionalInfo = $orderPayment->getAdditionalInformation(); if (empty($additionalInfo[PaymentDetailsHandler::AVS_POSTAL_RESPONSE_CODE]) || empty($additionalInfo[PaymentDetailsHandler::AVS_STREET_ADDRESS_RESPONSE_CODE]) ) { return self::$unavailableCode; } $streetCode = $additionalInfo[PaymentDetailsHandler::AVS_STREET_ADDRESS_RESPONSE_CODE]; $zipCode = $additionalInfo[PaymentDetailsHandler::AVS_POSTAL_RESPONSE_CODE]; $key = $zipCode . $streetCode; return isset(self::$avsMap[$key]) ? self::$avsMap[$key] : self::$unavailableCode; } }