1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-25 00:02:41 +01:00
phorge-phorge/src/applications/uiexample/examples/JavelinViewExampleServerView.php

15 lines
231 B
PHP
Raw Normal View History

<?php
final class JavelinViewExampleServerView extends AphrontView {
public function render() {
return phutil_tag(
'div',
array(
'class' => 'server-view',
),
$this->renderChildren());
}
}