Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/owners/customfield/PhabricatorOwnersCustomField.php
12256 views
1
<?php
2
3
abstract class PhabricatorOwnersCustomField
4
extends PhabricatorCustomField {
5
6
public function newStorageObject() {
7
return new PhabricatorOwnersCustomFieldStorage();
8
}
9
10
protected function newStringIndexStorage() {
11
return new PhabricatorOwnersCustomFieldStringIndex();
12
}
13
14
protected function newNumericIndexStorage() {
15
return new PhabricatorOwnersCustomFieldNumericIndex();
16
}
17
18
}
19
20