Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/storage/DifferentialRevision.php
| Show All 9 Lines | implements | ||||
| HarbormasterBuildableInterface, | HarbormasterBuildableInterface, | ||||
| PhabricatorSubscribableInterface, | PhabricatorSubscribableInterface, | ||||
| PhabricatorCustomFieldInterface, | PhabricatorCustomFieldInterface, | ||||
| PhabricatorApplicationTransactionInterface, | PhabricatorApplicationTransactionInterface, | ||||
| PhabricatorMentionableInterface, | PhabricatorMentionableInterface, | ||||
| PhabricatorDestructibleInterface, | PhabricatorDestructibleInterface, | ||||
| PhabricatorProjectInterface, | PhabricatorProjectInterface, | ||||
| PhabricatorFulltextInterface, | PhabricatorFulltextInterface, | ||||
| PhabricatorFerretInterface, | |||||
| PhabricatorConduitResultInterface, | PhabricatorConduitResultInterface, | ||||
| PhabricatorDraftInterface { | PhabricatorDraftInterface { | ||||
| protected $title = ''; | protected $title = ''; | ||||
| protected $originalTitle; | protected $originalTitle; | ||||
| protected $status; | protected $status; | ||||
| protected $summary = ''; | protected $summary = ''; | ||||
| ▲ Show 20 Lines • Show All 869 Lines • ▼ Show 20 Lines | |||||
| /* -( PhabricatorFulltextInterface )--------------------------------------- */ | /* -( PhabricatorFulltextInterface )--------------------------------------- */ | ||||
| public function newFulltextEngine() { | public function newFulltextEngine() { | ||||
| return new DifferentialRevisionFulltextEngine(); | return new DifferentialRevisionFulltextEngine(); | ||||
| } | } | ||||
| /* -( PhabricatorFerretInterface )----------------------------------------- */ | |||||
| public function newFerretEngine() { | |||||
| return new DifferentialRevisionFerretEngine(); | |||||
| } | |||||
| /* -( PhabricatorConduitResultInterface )---------------------------------- */ | /* -( PhabricatorConduitResultInterface )---------------------------------- */ | ||||
| public function getFieldSpecificationsForConduit() { | public function getFieldSpecificationsForConduit() { | ||||
| return array( | return array( | ||||
| id(new PhabricatorConduitSearchFieldSpecification()) | id(new PhabricatorConduitSearchFieldSpecification()) | ||||
| ->setKey('title') | ->setKey('title') | ||||
| ->setType('string') | ->setType('string') | ||||
| ▲ Show 20 Lines • Show All 44 Lines • Show Last 20 Lines | |||||