StoreManagementInterface.php 323 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Store\Api;
  7. /**
  8. * @api
  9. * @since 100.0.2
  10. */
  11. interface StoreManagementInterface
  12. {
  13. /**
  14. * Provide the number of store count
  15. *
  16. * @return int
  17. */
  18. public function getCount();
  19. }