mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
Fix PHPDoc
That apparently went lost when changing the signature.
This commit is contained in:
parent
299bcf749a
commit
cdced56f2b
2 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue