diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-03-04 17:55:24 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-03-04 17:55:24 +0100 |
commit | d772bc56e749c6ec380b4df3298510fd1f5dd9ad (patch) | |
tree | f316609c7df4a89756c1ee730fb5acbb1359f21d | |
parent | e56727e27b37ee4e55fea01913755b78638b8025 (diff) | |
parent | cdced56f2b0ce37796ab604764fba350dcbb3f93 (diff) | |
download | nextcloud-server-d772bc56e749c6ec380b4df3298510fd1f5dd9ad.tar.gz nextcloud-server-d772bc56e749c6ec380b4df3298510fd1f5dd9ad.zip |
Merge pull request #14693 from owncloud/fix-phpdoc
Fix PHPDoc
-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 |