Profile.php 447 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\SalesSequence\Model;
  7. use Magento\Framework\Model\AbstractModel;
  8. /**
  9. * Class Profile
  10. *
  11. * @api
  12. * @since 100.0.2
  13. */
  14. class Profile extends AbstractModel
  15. {
  16. /**
  17. * @inheritdoc
  18. */
  19. protected function _construct()
  20. {
  21. $this->_init(\Magento\SalesSequence\Model\ResourceModel\Profile::class);
  22. }
  23. }