Collection.php 488 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Oder statuses grid collection
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. namespace Magento\Sales\Model\ResourceModel\Status;
  9. class Collection extends \Magento\Sales\Model\ResourceModel\Order\Status\Collection
  10. {
  11. /**
  12. * Join order states table
  13. *
  14. * @return $this
  15. */
  16. protected function _initSelect()
  17. {
  18. parent::_initSelect();
  19. $this->joinStates();
  20. return $this;
  21. }
  22. }