| 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 |
/** |
| 12 |
* @deprecated |
| 13 |
*/ |
| 14 |
class MWP_Http_LegacyWorkerResponse extends MWP_Http_Response |
| 15 |
{ |
| 16 |
public function getContentAsString() |
| 17 |
{ |
| 18 |
return '<MWPHEADER>'.base64_encode(serialize($this->content)).'<ENDMWPHEADER>'; |
| 19 |
} |
| 20 |
} |
| 21 |
|