Page MenuHomec4science

AphrontWebpageResponse.php
No OneTemporary

File Metadata

Created
Mon, Jul 15, 22:57

AphrontWebpageResponse.php

<?php
final class AphrontWebpageResponse extends AphrontHTMLResponse {
private $content;
public function setContent($content) {
$this->content = $content;
return $this;
}
public function buildResponseString() {
return hsprintf('%s', $this->content);
}
}

Event Timeline