first commit

This commit is contained in:
Sven Wappler
2021-04-17 21:20:54 +02:00
parent c93ec9492a
commit cadcc8edb4
406 changed files with 4917 additions and 5157 deletions

View File

@@ -27,7 +27,7 @@ namespace WapplerSystems\Meilisearch;
* This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/
use WapplerSystems\Meilisearch\System\Solr\Document\Document;
use WapplerSystems\Meilisearch\System\Meilisearch\Document\Document;
/**
* Substitute page indexer interface, describes the method an indexer must
@@ -42,7 +42,7 @@ interface SubstitutePageIndexer
* returns a substitute document for the currently being indexed page
*
* @param Document $originalPageDocument The original page document.
* @return Document returns an \WapplerSystems\Meilisearch\System\Solr\Document\Document object that replace the default page document
* @return Document returns an \WapplerSystems\Meilisearch\System\Meilisearch\Document\Document object that replace the default page document
*/
public function getPageDocument(Document $originalPageDocument);
}