StatusInterface.php 350 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Framework\Search\Request\Aggregation;
  8. /**
  9. * Interface \Magento\Framework\Search\Request\Aggregation\StatusInterface
  10. *
  11. */
  12. interface StatusInterface
  13. {
  14. /**
  15. * @return bool
  16. */
  17. public function isEnabled();
  18. }