mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 09:42:41 +01:00
15 lines
209 B
PHP
15 lines
209 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorConduitEditField
|
||
|
extends PhabricatorEditField {
|
||
|
|
||
|
protected function newControl() {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
protected function newHTTPParameterType() {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
}
|