mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 18:32:41 +01:00
8c71815028
Summary: `renderChildren()` now returns array which isn't ideal but I prefer it to having two methods. Test Plan: None. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4910
14 lines
231 B
PHP
14 lines
231 B
PHP
<?php
|
|
|
|
final class JavelinViewExampleServerView extends AphrontView {
|
|
|
|
public function render() {
|
|
return phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'server-view',
|
|
),
|
|
$this->renderChildren());
|
|
}
|
|
|
|
}
|