mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 10:52:41 +01:00
17 lines
295 B
PHP
17 lines
295 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorEditEnginePointsCommentAction
|
||
|
extends PhabricatorEditEngineCommentAction {
|
||
|
|
||
|
public function getPHUIXControlType() {
|
||
|
return 'points';
|
||
|
}
|
||
|
|
||
|
public function getPHUIXControlSpecification() {
|
||
|
return array(
|
||
|
'value' => $this->getValue(),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|