mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-26 13:39:08 +01:00
Summary: Ref T11114. Much of this is around making the "comment-while-updating" flow work correctly. Test Plan: - Created new diffs by copy/pasting, then: - used one to create a new revision; - used one to update an existing revision, with a comment. Reviewers: chad Reviewed By: chad Maniphest Tasks: T11114 Differential Revision: https://secure.phabricator.com/D17053
18 lines
310 B
PHP
18 lines
310 B
PHP
<?php
|
|
|
|
final class PhabricatorDividerEditField
|
|
extends PhabricatorEditField {
|
|
|
|
protected function renderControl() {
|
|
return new AphrontFormDividerControl();
|
|
}
|
|
|
|
protected function newHTTPParameterType() {
|
|
return null;
|
|
}
|
|
|
|
protected function newConduitParameterType() {
|
|
return null;
|
|
}
|
|
|
|
}
|