| Current Path : /home/rtorresani/www/vendor/magento/module-store/Model/ResourceModel/Website/Grid/ |
| Current File : //home/rtorresani/www/vendor/magento/module-store/Model/ResourceModel/Website/Grid/Collection.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Store\Model\ResourceModel\Website\Grid;
/**
* Grid collection
*/
class Collection extends \Magento\Store\Model\ResourceModel\Website\Collection
{
/**
* Join website and store names
*
* @return $this
*/
protected function _initSelect()
{
parent::_initSelect();
$this->joinGroupAndStore();
return $this;
}
}