mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-22 19:49:02 +01:00
19 lines
409 B
PHP
19 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();
|
||
|
}
|
||
|
|
||
|
}
|