mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-22 03:29:11 +01:00
Summary: Fixes T9351. This is straightforward since this application is now relatively modern and doesn't have any bizarre craziness. Test Plan: {F787981} {F787982} Reviewers: chad Reviewed By: chad Maniphest Tasks: T9351 Differential Revision: https://secure.phabricator.com/D14093
18 lines
409 B
PHP
18 lines
409 B
PHP
<?php
|
|
|
|
abstract class PhabricatorOwnersCustomField
|
|
extends PhabricatorCustomField {
|
|
|
|
public function newStorageObject() {
|
|
return new PhabricatorOwnersCustomFieldStorage();
|
|
}
|
|
|
|
protected function newStringIndexStorage() {
|
|
return new PhabricatorOwnersCustomFieldStringIndex();
|
|
}
|
|
|
|
protected function newNumericIndexStorage() {
|
|
return new PhabricatorOwnersCustomFieldNumericIndex();
|
|
}
|
|
|
|
}
|