mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-07 13:21:02 +01:00
19 lines
307 B
PHP
19 lines
307 B
PHP
<?php
|
|
|
|
/**
|
|
* @group aphront
|
|
*/
|
|
final class AphrontWebpageResponse extends AphrontHTMLResponse {
|
|
|
|
private $content;
|
|
|
|
public function setContent($content) {
|
|
$this->content = $content;
|
|
return $this;
|
|
}
|
|
|
|
public function buildResponseString() {
|
|
return hsprintf('%s', $this->content);
|
|
}
|
|
|
|
}
|