mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 03:12:41 +01:00
a778151f28
Test Plan: Ran `phpstan analyze -a autoload.php phabricator/src`. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, hach-que Differential Revision: https://secure.phabricator.com/D17371
21 lines
479 B
PHP
21 lines
479 B
PHP
<?php
|
|
|
|
final class PhabricatorOwnersConfiguredCustomField
|
|
extends PhabricatorOwnersCustomField
|
|
implements PhabricatorStandardCustomFieldInterface {
|
|
|
|
public function getStandardCustomFieldNamespace() {
|
|
return 'owners';
|
|
}
|
|
|
|
public function createFields($object) {
|
|
$config = PhabricatorEnv::getEnvConfig('owners.custom-field-definitions');
|
|
|
|
$fields = PhabricatorStandardCustomField::buildStandardFields(
|
|
$this,
|
|
$config);
|
|
|
|
return $fields;
|
|
}
|
|
|
|
}
|