Skip to content
Snippets Groups Projects
Commit cdced56f authored by Lukas Reschke's avatar Lukas Reschke
Browse files

Fix PHPDoc

That apparently went lost when changing the signature.
parent 299bcf74
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment