Attribute.php 556 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Customer\Model\ResourceModel\Form;
  7. /**
  8. * Customer Form Attribute Resource Model
  9. *
  10. * @author Magento Core Team <core@magentocommerce.com>
  11. */
  12. class Attribute extends \Magento\Eav\Model\ResourceModel\Form\Attribute
  13. {
  14. /**
  15. * Initialize connection and define main table
  16. *
  17. * @return void
  18. */
  19. protected function _construct()
  20. {
  21. $this->_init('customer_form_attribute', 'attribute_id');
  22. }
  23. }