|
|
@@ -24,6 +24,12 @@
|
|
|
require_once 'Zend/Search/Lucene/Interface.php';
|
|
|
|
|
|
/**
|
|
|
+ * Import Zend_Search_Lucene_Interface_MultiSearcher for BC (see ZF-12067)
|
|
|
+ * @see Zend_Search_Lucene_Interface_MultiSearcher
|
|
|
+ */
|
|
|
+require_once 'Zend/Search/Lucene/Interface/MultiSearcher.php';
|
|
|
+
|
|
|
+/**
|
|
|
* Multisearcher allows to search through several independent indexes.
|
|
|
*
|
|
|
* @category Zend
|
|
|
@@ -31,7 +37,7 @@ require_once 'Zend/Search/Lucene/Interface.php';
|
|
|
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
|
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
|
*/
|
|
|
-class Zend_Search_Lucene_Interface_MultiSearcher implements Zend_Search_Lucene_Interface
|
|
|
+class Zend_Search_Lucene_MultiSearcher implements Zend_Search_Lucene_Interface
|
|
|
{
|
|
|
/**
|
|
|
* List of indices for searching.
|
|
|
@@ -971,3 +977,16 @@ class Zend_Search_Lucene_Interface_MultiSearcher implements Zend_Search_Lucene_I
|
|
|
// Do nothing, since it's never referenced by indices
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+/**
|
|
|
+ * This class is provided for backwards-compatibility (See ZF-12067)
|
|
|
+ *
|
|
|
+ * @category Zend
|
|
|
+ * @package Zend_Search_Lucene
|
|
|
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
|
|
|
+ * @license http://framework.zend.com/license/new-bsd New BSD License
|
|
|
+ */
|
|
|
+class Zend_Search_Lucene_Interface_MultiSearcher
|
|
|
+ extends Zend_Search_Lucene_MultiSearcher
|
|
|
+{
|
|
|
+}
|