Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / view / phui / PHUIPropertyGroupView.php
blobbc44b98589b31921ebb37a15af2ccae1662ca8e9
1 <?php
3 final class PHUIPropertyGroupView extends AphrontTagView {
5 private $items;
7 public function addPropertyList(PHUIPropertyListView $item) {
8 $this->items[] = $item;
11 protected function canAppendChild() {
12 return false;
15 protected function getTagAttributes() {
16 return array(
17 'class' => 'phui-property-list-view',
21 protected function getTagContent() {
22 return $this->items;