Status.php 377 B

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