Registration.php 360 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Customer\Model;
  7. /**
  8. * @api
  9. * @since 100.0.2
  10. */
  11. class Registration
  12. {
  13. /**
  14. * Check whether customers registration is allowed
  15. *
  16. * @return bool
  17. */
  18. public function isAllowed()
  19. {
  20. return true;
  21. }
  22. }