mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 01:32:42 +01:00
10 lines
130 B
PHP
10 lines
130 B
PHP
|
<?php
|
||
|
|
||
|
final class AphrontNullView extends AphrontView {
|
||
|
|
||
|
public function render() {
|
||
|
return $this->renderChildren();
|
||
|
}
|
||
|
|
||
|
}
|