repo.or.cz
/
phabricator.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git]
/
src
/
view
/
form
/
control
/
AphrontFormDividerControl.php
blob
b76d9e055b245159720c0ca0531f19d7504d2728
1
<
?php
2
3
final class
AphrontFormDividerControl
extends
AphrontFormControl
{
4
5
protected function
getCustomControlClass
() {
6
return
'aphront-form-control-divider'
;
7
}
8
9
protected function
renderInput
() {
10
return
phutil_tag
(
'hr'
);
11
}
12
13
}