From 0fd0f171f10f1573166f40301c281baa88f3cc35 Mon Sep 17 00:00:00 2001 From: epriestley Date: Mon, 15 Jun 2015 07:05:03 -0700 Subject: [PATCH] Fix an undeclared property on AphrontPlainTextResponse Auditors: joshuaspence --- src/aphront/response/AphrontPlainTextResponse.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/aphront/response/AphrontPlainTextResponse.php b/src/aphront/response/AphrontPlainTextResponse.php index a14b7367e9..d8289ab2f9 100644 --- a/src/aphront/response/AphrontPlainTextResponse.php +++ b/src/aphront/response/AphrontPlainTextResponse.php @@ -2,6 +2,8 @@ final class AphrontPlainTextResponse extends AphrontResponse { + private $content; + public function setContent($content) { $this->content = $content; return $this; -- 2.51.2