Page MenuHomec4science

AphrontWebpageResponse.php
No OneTemporary

File Metadata

Created
Tue, Jul 16, 02:55

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