diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2021-01-12 11:01:06 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2021-01-12 12:36:21 +0100 |
commit | 41c80d6c19ee3bb0bb0bec43b3a030df8165430d (patch) | |
tree | 0f09db5dab7217dfc12ed8ac1750710125d96fab /lib/public/Http/Client/IClient.php | |
parent | 9b58a027e3312d14ee3cd724841ae32af481d03c (diff) | |
download | nextcloud-server-41c80d6c19ee3bb0bb0bec43b3a030df8165430d.tar.gz nextcloud-server-41c80d6c19ee3bb0bb0bec43b3a030df8165430d.zip |
Fix option in the client code itself as well
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/public/Http/Client/IClient.php')
-rw-r--r-- | lib/public/Http/Client/IClient.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/public/Http/Client/IClient.php b/lib/public/Http/Client/IClient.php index 4c50c1c6497..1498cfaaba2 100644 --- a/lib/public/Http/Client/IClient.php +++ b/lib/public/Http/Client/IClient.php @@ -55,7 +55,7 @@ interface IClient { * 'referer' => true, // add a Referer header * 'protocols' => ['https'] // only allow https URLs * ], - * 'save_to' => '/path/to/file', // save to a file or a stream + * 'sink' => '/path/to/file', // save to a file or a stream * 'verify' => true, // bool or string to CA file * 'debug' => true, * @return IResponse @@ -80,7 +80,7 @@ interface IClient { * 'referer' => true, // add a Referer header * 'protocols' => ['https'] // only allow https URLs * ], - * 'save_to' => '/path/to/file', // save to a file or a stream + * 'sink' => '/path/to/file', // save to a file or a stream * 'verify' => true, // bool or string to CA file * 'debug' => true, * @return IResponse @@ -110,7 +110,7 @@ interface IClient { * 'referer' => true, // add a Referer header * 'protocols' => ['https'] // only allow https URLs * ], - * 'save_to' => '/path/to/file', // save to a file or a stream + * 'sink' => '/path/to/file', // save to a file or a stream * 'verify' => true, // bool or string to CA file * 'debug' => true, * @return IResponse @@ -140,7 +140,7 @@ interface IClient { * 'referer' => true, // add a Referer header * 'protocols' => ['https'] // only allow https URLs * ], - * 'save_to' => '/path/to/file', // save to a file or a stream + * 'sink' => '/path/to/file', // save to a file or a stream * 'verify' => true, // bool or string to CA file * 'debug' => true, * @return IResponse @@ -170,7 +170,7 @@ interface IClient { * 'referer' => true, // add a Referer header * 'protocols' => ['https'] // only allow https URLs * ], - * 'save_to' => '/path/to/file', // save to a file or a stream + * 'sink' => '/path/to/file', // save to a file or a stream * 'verify' => true, // bool or string to CA file * 'debug' => true, * @return IResponse @@ -200,7 +200,7 @@ interface IClient { * 'referer' => true, // add a Referer header * 'protocols' => ['https'] // only allow https URLs * ], - * 'save_to' => '/path/to/file', // save to a file or a stream + * 'sink' => '/path/to/file', // save to a file or a stream * 'verify' => true, // bool or string to CA file * 'debug' => true, * @return IResponse |