Merge renderChildren() and renderHTMLChildren()

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
This commit is contained in:
vrana
2013-02-11 14:55:35 -08:00
parent ae4e5807d6
commit 8c71815028
31 changed files with 29 additions and 45 deletions

View File

@@ -33,7 +33,7 @@ final class PhabricatorMainMenuGroupView extends AphrontView {
array(
'class' => implode(' ', $classes),
),
$this->renderHTMLChildren());
$this->renderChildren());
}
}