|
|
@@ -125,6 +125,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()`.
|
|
|
*
|
|
|
* There are several ways to specify a detector, see \Cake\Http\ServerRequest::addDetector() for the
|
|
|
@@ -1885,7 +1892,7 @@ class ServerRequest implements ArrayAccess, ServerRequestInterface
|
|
|
* Get the uploaded file from a dotted path.
|
|
|
*
|
|
|
* @param string $path The dot separated path to the file you want.
|
|
|
- * @return null|Psr\Http\Message\UploadedFileInterface
|
|
|
+ * @return null|\Psr\Http\Message\UploadedFileInterface
|
|
|
*/
|
|
|
public function getUploadedFile($path)
|
|
|
{
|