1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-08 13:51:02 +01:00
phorge-phorge/src/aphront/response/AphrontWebpageResponse.php

20 lines
307 B
PHP
Raw Normal View History

<?php
/**
* @group aphront
*/
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);
}
}