CollectionFactoryInterface.php 453 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Reports\Model\ResourceModel\Quote;
  7. /**
  8. * @api
  9. * @since 100.0.2
  10. */
  11. interface CollectionFactoryInterface
  12. {
  13. /**
  14. * Create class instance with specified parameters
  15. *
  16. * @param array $data
  17. * @return \Magento\Reports\Model\ResourceModel\Quote\Collection
  18. */
  19. public function create(array $data = []);
  20. }