mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-17 10:11:10 +01:00
Fix an undeclared property on AphrontPlainTextResponse
Auditors: joshuaspence
This commit is contained in:
parent
0695687572
commit
0fd0f171f1
1 changed files with 2 additions and 0 deletions
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
final class AphrontPlainTextResponse extends AphrontResponse {
|
final class AphrontPlainTextResponse extends AphrontResponse {
|
||||||
|
|
||||||
|
private $content;
|
||||||
|
|
||||||
public function setContent($content) {
|
public function setContent($content) {
|
||||||
$this->content = $content;
|
$this->content = $content;
|
||||||
return $this;
|
return $this;
|
||||||
|
|
Loading…
Reference in a new issue