Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/worker/src/MWP/Worker
File: ActionResponse.php
<?php
[0] Fix | Delete
/*
[1] Fix | Delete
* This file is part of the ManageWP Worker plugin.
[2] Fix | Delete
*
[3] Fix | Delete
* (c) ManageWP LLC <contact@managewp.com>
[4] Fix | Delete
*
[5] Fix | Delete
* For the full copyright and license information, please view the LICENSE
[6] Fix | Delete
* file that was distributed with this source code.
[7] Fix | Delete
*/
[8] Fix | Delete
[9] Fix | Delete
/**
[10] Fix | Delete
* @deprecated This is a hack used for legacy action calls.
[11] Fix | Delete
*/
[12] Fix | Delete
class MWP_Worker_ActionResponse extends Exception
[13] Fix | Delete
{
[14] Fix | Delete
[15] Fix | Delete
private $data;
[16] Fix | Delete
[17] Fix | Delete
public function __construct($data)
[18] Fix | Delete
{
[19] Fix | Delete
$this->data = $data;
[20] Fix | Delete
}
[21] Fix | Delete
[22] Fix | Delete
public function getData()
[23] Fix | Delete
{
[24] Fix | Delete
return $this->data;
[25] Fix | Delete
}
[26] Fix | Delete
}
[27] Fix | Delete
[28] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function