コード例 #1
0
ファイル: AbstractCollection.php プロジェクト: nja78/magento2
 /**
  * Remove all items from collection
  * @return $this
  */
 public function removeAllItems()
 {
     $this->_itemsById = [];
     return parent::removeAllItems();
 }