From b98f1a12ffdebfbc27ad633243b7bed67732e221 Mon Sep 17 00:00:00 2001 From: ADmad Date: Thu, 15 Dec 2016 01:45:06 +0530 Subject: [PATCH] Declare missing property --- src/Http/ServerRequest.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Http/ServerRequest.php b/src/Http/ServerRequest.php index ce5bc39acc3..159726ce4b2 100644 --- a/src/Http/ServerRequest.php +++ b/src/Http/ServerRequest.php @@ -124,6 +124,13 @@ class ServerRequest implements ArrayAccess, ServerRequestInterface */ public $trustProxy = false; + /** + * Contents of php://input + * + * @var string + */ + protected $_input; + /** * The built in detectors used with `is()` can be modified with `addDetector()`. *