Page MenuHomec4science

PhabricatorOwnersCustomField.php
No OneTemporary

File Metadata

Created
Wed, Jul 31, 09:16

PhabricatorOwnersCustomField.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();
}
}

Event Timeline