Customer.php 451 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Customer\Model\Backend;
  7. class Customer extends \Magento\Customer\Model\Customer
  8. {
  9. /**
  10. * Get store id
  11. *
  12. * @return int
  13. */
  14. public function getStoreId()
  15. {
  16. if ($this->getWebsiteId() * 1) {
  17. return $this->_getWebsiteStoreId();
  18. }
  19. return parent::getStoreId();
  20. }
  21. }