| 1 |
<?php |
| 2 |
/* |
| 3 |
* This file is part of the ManageWP Worker plugin. |
| 4 |
* |
| 5 |
* (c) ManageWP LLC <contact@managewp.com> |
| 6 |
* |
| 7 |
* For the full copyright and license information, please view the LICENSE |
| 8 |
* file that was distributed with this source code. |
| 9 |
*/ |
| 10 |
|
| 11 |
interface MWP_Http_StreamingResponseInterface |
| 12 |
{ |
| 13 |
/** |
| 14 |
* @return MWP_Stream_Interface |
| 15 |
*/ |
| 16 |
public function createResponseStream(); |
| 17 |
} |
| 18 |
|