mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 03:12:41 +01:00
18 lines
372 B
PHP
18 lines
372 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorPointsEditField
|
||
|
extends PhabricatorEditField {
|
||
|
|
||
|
protected function newControl() {
|
||
|
return new AphrontFormTextControl();
|
||
|
}
|
||
|
|
||
|
protected function newConduitParameterType() {
|
||
|
return new ConduitPointsParameterType();
|
||
|
}
|
||
|
|
||
|
protected function newCommentAction() {
|
||
|
return id(new PhabricatorEditEnginePointsCommentAction());
|
||
|
}
|
||
|
}
|