Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/almanac/engineextension/AlmanacDeletePropertyEditField.php
12256 views
1
<?php
2
3
final class AlmanacDeletePropertyEditField
4
extends PhabricatorEditField {
5
6
protected function newControl() {
7
return null;
8
}
9
10
protected function newHTTPParameterType() {
11
return null;
12
}
13
14
protected function newConduitParameterType() {
15
return new ConduitStringListParameterType();
16
}
17
18
protected function newEditType() {
19
return new AlmanacDeletePropertyEditType();
20
}
21
22
}
23
24