diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-03-04 15:35:41 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-03-04 15:35:41 +0100 |
commit | cdced56f2b0ce37796ab604764fba350dcbb3f93 (patch) | |
tree | b91bb0f2f6409918f07f13f8b8f6b82d4a12b3d8 /lib/public | |
parent | 299bcf749a63efa6516afeb3e826f087a31187e9 (diff) | |
download | nextcloud-server-cdced56f2b0ce37796ab604764fba350dcbb3f93.tar.gz nextcloud-server-cdced56f2b0ce37796ab604764fba350dcbb3f93.zip |
Fix PHPDoc
That apparently went lost when changing the signature.
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/appframework/http/icallbackresponse.php | 2 | ||||
-rw-r--r-- | lib/public/appframework/http/streamresponse.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/appframework/http/icallbackresponse.php b/lib/public/appframework/http/icallbackresponse.php index 4a392ed081d..4d50df7ac77 100644 --- a/lib/public/appframework/http/icallbackresponse.php +++ b/lib/public/appframework/http/icallbackresponse.php @@ -21,7 +21,7 @@ interface ICallbackResponse { /** * Outputs the content that should be printed * - * @param IOutput a small wrapper that handles output + * @param IOutput $output a small wrapper that handles output */ function callback(IOutput $output); diff --git a/lib/public/appframework/http/streamresponse.php b/lib/public/appframework/http/streamresponse.php index 870eb95cc1a..ede1dc8b58e 100644 --- a/lib/public/appframework/http/streamresponse.php +++ b/lib/public/appframework/http/streamresponse.php @@ -32,7 +32,7 @@ class StreamResponse extends Response implements ICallbackResponse { /** * Streams the file using readfile * - * @param IOutput a small wrapper that handles output + * @param IOutput $output a small wrapper that handles output */ public function callback (IOutput $output) { // handle caching |