AuthenticationState.php 354 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Wishlist\Model;
  8. class AuthenticationState implements AuthenticationStateInterface
  9. {
  10. /**
  11. * Is authentication enabled
  12. *
  13. * @return bool
  14. */
  15. public function isEnabled()
  16. {
  17. return true;
  18. }
  19. }