diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-09-30 16:30:36 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-09-30 16:30:36 +0200 |
commit | 26785c9e0de4a8cba475efe23c3bd996c7b46d0d (patch) | |
tree | 2b98ea39e3c153be6e83bea4e83b7367dc922017 | |
parent | 4e9a95f3e9fcf3336019de1e1e4963ed91206065 (diff) | |
download | nextcloud-server-26785c9e0de4a8cba475efe23c3bd996c7b46d0d.tar.gz nextcloud-server-26785c9e0de4a8cba475efe23c3bd996c7b46d0d.zip |
Remove getContent() from IRequest
-rw-r--r-- | lib/public/irequest.php | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/public/irequest.php b/lib/public/irequest.php index b9bcc4bbc28..054f15d9eb2 100644 --- a/lib/public/irequest.php +++ b/lib/public/irequest.php @@ -107,12 +107,4 @@ interface IRequest { function getCookie($key); - /** - * Returns the request body content. - * - * @param Boolean $asResource If true, a resource will be returned - * @return string|resource The request body content or a resource to read the body stream. - * @throws \LogicException - */ - //function getContent($asResource = false); } |