Collection.php 504 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Sales Rules resource collection model
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. namespace Magento\SalesRule\Model\ResourceModel\Rule\Quote;
  9. class Collection extends \Magento\SalesRule\Model\ResourceModel\Rule\Collection
  10. {
  11. /**
  12. * Add websites for load
  13. *
  14. * @return $this
  15. */
  16. public function _initSelect()
  17. {
  18. parent::_initSelect();
  19. $this->addWebsitesToResult();
  20. return $this;
  21. }
  22. }