10 lines
155 B
PHP
10 lines
155 B
PHP
<?php
|
|
|
|
final class AphrontNullView extends AphrontView {
|
|
|
|
public function render() {
|
|
return phutil_implode_html('', $this->renderChildren());
|
|
}
|
|
|
|
}
|