| Current Path : /home/rtorresani/www/vendor/magento/module-sales/Model/ResourceModel/Status/ |
| Current File : //home/rtorresani/www/vendor/magento/module-sales/Model/ResourceModel/Status/Collection.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Sales\Model\ResourceModel\Status;
/**
* Order statuses grid collection.
*/
class Collection extends \Magento\Sales\Model\ResourceModel\Order\Status\Collection
{
/**
* Join order states table
*
* @return $this
*/
protected function _initSelect()
{
parent::_initSelect();
$this->joinStates();
return $this;
}
}