123456789101112131415161718192021 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Reports\Model\ResourceModel\Quote;
- /**
- * @api
- * @since 100.0.2
- */
- interface CollectionFactoryInterface
- {
- /**
- * Create class instance with specified parameters
- *
- * @param array $data
- * @return \Magento\Reports\Model\ResourceModel\Quote\Collection
- */
- public function create(array $data = []);
- }
|