1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-11 01:12:41 +01:00
phorge-phorge/src/view/AphrontNullView.php

10 lines
155 B
PHP
Raw Normal View History

<?php
final class AphrontNullView extends AphrontView {
public function render() {
2013-02-13 23:50:15 +01:00
return phutil_implode_html('', $this->renderChildren());
}
}