Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / view / phui / PHUILauncherView.php
blobfbb029b9d3ee849c4163faa5267f9fc13eca7168
1 <?php
3 final class PHUILauncherView
4 extends AphrontTagView {
6 protected function getTagName() {
7 return 'div';
10 protected function getTagAttributes() {
11 $classes = array();
13 $classes[] = 'phui-launcher-view';
15 return array(
16 'class' => implode(' ', $classes),