diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-09-28 01:35:24 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-10-01 20:13:13 +0200 |
commit | 973bcccd7cc18867ea22c24f83421ed180b5022c (patch) | |
tree | dcb1dcf2832b9c73c65f73d050bc9228a4f8f33d /lib/public/irequest.php | |
parent | 36d1156cf8fbd340ecfcc9d9a06e69004acfe154 (diff) | |
download | nextcloud-server-973bcccd7cc18867ea22c24f83421ed180b5022c.tar.gz nextcloud-server-973bcccd7cc18867ea22c24f83421ed180b5022c.zip |
Implement PUT an PATCH support
Diffstat (limited to 'lib/public/irequest.php')
-rw-r--r-- | lib/public/irequest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/irequest.php b/lib/public/irequest.php index 5611180473d..b9bcc4bbc28 100644 --- a/lib/public/irequest.php +++ b/lib/public/irequest.php @@ -114,5 +114,5 @@ interface IRequest { * @return string|resource The request body content or a resource to read the body stream. * @throws \LogicException */ - function getContent($asResource = false); + //function getContent($asResource = false); } |