12345678910111213141516171819202122 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * Customer Address Form Model
- *
- * @author Magento Core Team <core@magentocommerce.com>
- */
- namespace Magento\Customer\Model\Address;
- class Form extends \Magento\Customer\Model\Form
- {
- /**
- * Current EAV entity type code
- *
- * @var string
- */
- protected $_entityTypeCode = 'customer_address';
- }
|