web/lib/Zend/Search/Lucene/MultiSearcher.php
changeset 807 877f952ae2bd
parent 207 621fa6caec0c
child 1230 68c69c656a2c
equal deleted inserted replaced
805:5e7a0fedabdf 807:877f952ae2bd
    12  * obtain it through the world-wide-web, please send an email
    12  * obtain it through the world-wide-web, please send an email
    13  * to license@zend.com so we can send you a copy immediately.
    13  * to license@zend.com so we can send you a copy immediately.
    14  *
    14  *
    15  * @category   Zend
    15  * @category   Zend
    16  * @package    Zend_Search_Lucene
    16  * @package    Zend_Search_Lucene
    17  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    17  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    18  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    18  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    19  * @version    $Id: MultiSearcher.php 22967 2010-09-18 18:53:58Z ramon $
    19  * @version    $Id: MultiSearcher.php 24862 2012-06-02 00:04:53Z adamlundrigan $
    20  */
    20  */
    21 
    21 
    22 
    22 
    23 /** Zend_Search_Lucene_Interface */
    23 /** Zend_Search_Lucene_Interface */
    24 require_once 'Zend/Search/Lucene/Interface.php';
    24 require_once 'Zend/Search/Lucene/Interface.php';
       
    25 
       
    26 /**
       
    27  * Import Zend_Search_Lucene_Interface_MultiSearcher for BC (see ZF-12067)
       
    28  * @see Zend_Search_Lucene_Interface_MultiSearcher 
       
    29  */
       
    30 require_once 'Zend/Search/Lucene/Interface/MultiSearcher.php';
    25 
    31 
    26 /**
    32 /**
    27  * Multisearcher allows to search through several independent indexes.
    33  * Multisearcher allows to search through several independent indexes.
    28  *
    34  *
    29  * @category   Zend
    35  * @category   Zend
    30  * @package    Zend_Search_Lucene
    36  * @package    Zend_Search_Lucene
    31  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    37  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    32  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    38  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    33  */
    39  */
    34 class Zend_Search_Lucene_Interface_MultiSearcher implements Zend_Search_Lucene_Interface
    40 class Zend_Search_Lucene_MultiSearcher implements Zend_Search_Lucene_Interface
    35 {
    41 {
    36     /**
    42     /**
    37      * List of indices for searching.
    43      * List of indices for searching.
    38      * Array of Zend_Search_Lucene_Interface objects
    44      * Array of Zend_Search_Lucene_Interface objects
    39      *
    45      *
   969     public function removeReference()
   975     public function removeReference()
   970     {
   976     {
   971         // Do nothing, since it's never referenced by indices
   977         // Do nothing, since it's never referenced by indices
   972     }
   978     }
   973 }
   979 }
       
   980 
       
   981 /**
       
   982  * This class is provided for backwards-compatibility (See ZF-12067)
       
   983  *
       
   984  * @category   Zend
       
   985  * @package    Zend_Search_Lucene
       
   986  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
       
   987  * @license    http://framework.zend.com/license/new-bsd     New BSD License
       
   988  */
       
   989 class Zend_Search_Lucene_Interface_MultiSearcher
       
   990     extends Zend_Search_Lucene_MultiSearcher
       
   991 {
       
   992 }