CollectionFactoryInterface.php 466 B

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