mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-10 06:41:04 +01:00
19 lines
291 B
PHP
19 lines
291 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 $this->content;
|
|
}
|
|
|
|
}
|