Collection.php 426 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\CatalogRule\Model\ResourceModel\Grid;
  7. class Collection extends \Magento\CatalogRule\Model\ResourceModel\Rule\Collection
  8. {
  9. /**
  10. * @return $this
  11. */
  12. protected function _initSelect()
  13. {
  14. parent::_initSelect();
  15. $this->addWebsitesToResult();
  16. return $this;
  17. }
  18. }