From 436d0ae410101e526ac9326483788153de507f26 Mon Sep 17 00:00:00 2001 From: Oleksandr Iegorov Date: Tue, 3 Mar 2020 11:19:07 -0600 Subject: [PATCH] MC-23890: Customer module Recurring setup script performance problems --- app/code/Magento/Customer/Model/Customer.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/code/Magento/Customer/Model/Customer.php b/app/code/Magento/Customer/Model/Customer.php index 1e4914b152de3..ea52994735c63 100644 --- a/app/code/Magento/Customer/Model/Customer.php +++ b/app/code/Magento/Customer/Model/Customer.php @@ -1003,6 +1003,7 @@ public function getSharedWebsiteIds() */ public function getAttributeSetId() { + // phpstan:ignore "Call to an undefined static method*" return parent::getAttributeSetId() ?: CustomerMetadataInterface::ATTRIBUTE_SET_ID_CUSTOMER; }