Status.php 312 B

123456789101112131415161718
  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. class Status implements StatusInterface
  9. {
  10. /**
  11. * {@inheritdoc}
  12. */
  13. public function isEnabled()
  14. {
  15. return false;
  16. }
  17. }