初始化此对象的方式或位置


How, or where, is this object being initialized?

public function getItemsCollection($useCache = true)
  {
      if (is_null($this->_items)) {
          $this->_items = Mage::getModel('sales/quote_item')->getCollection();
          $this->_items->setQuote($this);
      }
      return $this->_items;
  }

在此范围内,如何找到正在初始化_items的内容?这不是我遇到的Magento对象。

grep -lir '$this->_items = ' ~/MyProject