1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-30 01:10:58 +01:00

Fix an undeclared property on AphrontPlainTextResponse

Auditors: joshuaspence
This commit is contained in:
epriestley 2015-06-15 07:05:03 -07:00
parent 0695687572
commit 0fd0f171f1

View file

@ -2,6 +2,8 @@
final class AphrontPlainTextResponse extends AphrontResponse {
private $content;
public function setContent($content) {
$this->content = $content;
return $this;