예제 #1
0
파일: QueryHit.php 프로젝트: stunti/zf2
 /**
  * Return the document object for this hit
  *
  * @return \Zend\Search\Lucene\Document\Document
  */
 public function getDocument()
 {
     if (!$this->_document instanceof Document\Document) {
         $this->_document = $this->_index->getDocument($this->id);
     }
     return $this->_document;
 }