mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 03:02:43 +01:00
19 lines
305 B
PHP
19 lines
305 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorStaticEditField
|
||
|
extends PhabricatorEditField {
|
||
|
|
||
|
protected function newControl() {
|
||
|
return new AphrontFormMarkupControl();
|
||
|
}
|
||
|
|
||
|
protected function newHTTPParameterType() {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
protected function newConduitParameterType() {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
}
|