blob: 4a392ed081d72b1d2481053649eff075bdc923fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?php
/**
* @author Bernhard Posselt
* @copyright 2015 Bernhard Posselt <dev@bernhard-posselt.com>
*
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace OCP\AppFramework\Http;
/**
* Interface ICallbackResponse
*
* @package OCP\AppFramework\Http
*/
interface ICallbackResponse {
/**
* Outputs the content that should be printed
*
* @param IOutput a small wrapper that handles output
*/
function callback(IOutput $output);
}
|