コード例 #1
0
ファイル: AbstractCollection.php プロジェクト: nja78/magento2
 /**
  * Reset collection
  *
  * @return $this
  */
 protected function _reset()
 {
     parent::_reset();
     $this->_selectEntityTypes = [];
     $this->_selectAttributes = [];
     $this->_filterAttributes = [];
     $this->_joinEntities = [];
     $this->_joinAttributes = [];
     $this->_joinFields = [];
     return $this;
 }