1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-21 17:58:47 +02:00
phorge-phorge/src/view/layout/AphrontMiniPanelView.php
2013-02-13 14:51:18 -08:00

12 lines
218 B
PHP

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