Changeset View
Changeset View
Standalone View
Standalone View
src/applications/maniphest/storage/ManiphestTask.php
| Show First 20 Lines • Show All 567 Lines • ▼ Show 20 Lines | return array( | ||||
| id(new PhabricatorBoardColumnsSearchEngineAttachment()) | id(new PhabricatorBoardColumnsSearchEngineAttachment()) | ||||
| ->setAttachmentKey('columns'), | ->setAttachmentKey('columns'), | ||||
| ); | ); | ||||
| } | } | ||||
| public function newSubtypeObject() { | public function newSubtypeObject() { | ||||
| $subtype_key = $this->getEditEngineSubtype(); | $subtype_key = $this->getEditEngineSubtype(); | ||||
| $subtype_map = $this->newEditEngineSubtypeMap(); | $subtype_map = $this->newEditEngineSubtypeMap(); | ||||
| return idx($subtype_map, $subtype_key); | return $subtype_map->getSubtype($subtype_key); | ||||
| } | } | ||||
| /* -( PhabricatorFulltextInterface )--------------------------------------- */ | /* -( PhabricatorFulltextInterface )--------------------------------------- */ | ||||
| public function newFulltextEngine() { | public function newFulltextEngine() { | ||||
| return new ManiphestTaskFulltextEngine(); | return new ManiphestTaskFulltextEngine(); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 49 Lines • Show Last 20 Lines | |||||