Page MenuHomec4science

PhabricatorProjectCustomField.php
No OneTemporary

File Metadata

Created
Sat, Jan 11, 22:21

PhabricatorProjectCustomField.php

<?php
abstract class PhabricatorProjectCustomField
extends PhabricatorCustomField {
public function newStorageObject() {
return new PhabricatorProjectCustomFieldStorage();
}
protected function newStringIndexStorage() {
return new PhabricatorProjectCustomFieldStringIndex();
}
protected function newNumericIndexStorage() {
return new PhabricatorProjectCustomFieldNumericIndex();
}
}

Event Timeline