Differential D14843 Diff 35876 src/applications/search/fulltextstorage/PhabricatorFulltextStorageEngine.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/search/fulltextstorage/PhabricatorFulltextStorageEngine.php
- This file was moved from src/applications/search/engine/PhabricatorSearchEngine.php.
<?php | <?php | ||||
/** | /** | ||||
* Base class for Phabricator search engine providers. Each engine must offer | * Base class for Phabricator search engine providers. Each engine must offer | ||||
* three capabilities: indexing, searching, and reconstruction (this can be | * three capabilities: indexing, searching, and reconstruction (this can be | ||||
* stubbed out if an engine can't reasonably do it, it is used for debugging). | * stubbed out if an engine can't reasonably do it, it is used for debugging). | ||||
*/ | */ | ||||
abstract class PhabricatorSearchEngine extends Phobject { | abstract class PhabricatorFulltextStorageEngine extends Phobject { | ||||
/* -( Engine Metadata )---------------------------------------------------- */ | /* -( Engine Metadata )---------------------------------------------------- */ | ||||
/** | /** | ||||
* Return a unique, nonempty string which identifies this storage engine. | * Return a unique, nonempty string which identifies this storage engine. | ||||
* | * | ||||
* @return string Unique string for this engine, max length 32. | * @return string Unique string for this engine, max length 32. | ||||
* @task meta | * @task meta | ||||
▲ Show 20 Lines • Show All 122 Lines • Show Last 20 Lines |