1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-04 20:52:43 +01:00
phorge-phorge/src/aphront/response/AphrontWebpageResponse.php

17 lines
281 B
PHP
Raw Normal View History

<?php
2012-11-29 08:57:13 +01:00
final class AphrontWebpageResponse extends AphrontHTMLResponse {
private $content;
public function setContent($content) {
$this->content = $content;
return $this;
}
public function buildResponseString() {
2013-02-13 23:50:15 +01:00
return hsprintf('%s', $this->content);
}
}