AuthenticationStateInterface.php 372 B

123456789101112131415161718192021
  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. /**
  9. * Interface \Magento\Wishlist\Model\AuthenticationStateInterface
  10. *
  11. */
  12. interface AuthenticationStateInterface
  13. {
  14. /**
  15. * Is authentication enabled
  16. *
  17. * @return bool
  18. */
  19. public function isEnabled();
  20. }