mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-24 07:42:40 +01:00
9 lines
155 B
PHP
9 lines
155 B
PHP
<?php
|
|
|
|
final class AphrontNullView extends AphrontView {
|
|
|
|
public function render() {
|
|
return phutil_implode_html('', $this->renderChildren());
|
|
}
|
|
|
|
}
|