From d323ba45ba0e327e33c0ea2824dc7e37fd15b24d Mon Sep 17 00:00:00 2001 From: Andrea Gentili Date: Sun, 10 Jun 2018 12:56:36 +0200 Subject: [PATCH] Change variable name #12612 --- .../Quote/Observer/Frontend/Quote/Address/VatValidator.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/code/Magento/Quote/Observer/Frontend/Quote/Address/VatValidator.php b/app/code/Magento/Quote/Observer/Frontend/Quote/Address/VatValidator.php index bfb20d1b2696f..91677f92bea6e 100644 --- a/app/code/Magento/Quote/Observer/Frontend/Quote/Address/VatValidator.php +++ b/app/code/Magento/Quote/Observer/Frontend/Quote/Address/VatValidator.php @@ -38,11 +38,11 @@ class VatValidator public function __construct( Address $customerAddress, Vat $customerVat, - UpdateValidationResult $updateValidationResult = null + UpdateValidationResult $updateValidationRes = null ) { $this->customerVat = $customerVat; $this->customerAddress = $customerAddress; - $this->updateValidationResult = $updateValidationResult; + $this->updateValidationResult = $updateValidationRes; // Backward compatibility object injection if ($this->updateValidationResult === null) {