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
/
phui
/
PHUILauncherView.php
blob
fbb029b9d3ee849c4163faa5267f9fc13eca7168
1
<
?php
2
3
final class
PHUILauncherView
4
extends
AphrontTagView
{
5
6
protected function
getTagName
() {
7
return
'div'
;
8
}
9
10
protected function
getTagAttributes
() {
11
$classes
=
array
();
12
13
$classes
[] =
'phui-launcher-view'
;
14
15
return array
(
16
'class'
=>
implode
(
' '
,
$classes
),
17
);
18
}
19
20
}