Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/worker/src/MWP/Event
File: MasterResponse.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
class MWP_Event_MasterResponse extends Symfony_EventDispatcher_Event
[10] Fix | Delete
{
[11] Fix | Delete
[12] Fix | Delete
/**
[13] Fix | Delete
* @var MWP_Http_ResponseInterface|null
[14] Fix | Delete
*/
[15] Fix | Delete
private $response;
[16] Fix | Delete
[17] Fix | Delete
public function __construct(MWP_Http_ResponseInterface $response)
[18] Fix | Delete
{
[19] Fix | Delete
$this->response = $response;
[20] Fix | Delete
}
[21] Fix | Delete
[22] Fix | Delete
/**
[23] Fix | Delete
* @return MWP_Http_ResponseInterface
[24] Fix | Delete
*/
[25] Fix | Delete
public function getResponse()
[26] Fix | Delete
{
[27] Fix | Delete
return $this->response;
[28] Fix | Delete
}
[29] Fix | Delete
[30] Fix | Delete
/**
[31] Fix | Delete
* Give listeners a chance to remove the response.
[32] Fix | Delete
*
[33] Fix | Delete
* @param MWP_Http_ResponseInterface|null $response
[34] Fix | Delete
*/
[35] Fix | Delete
public function setResponse(MWP_Http_ResponseInterface $response = null)
[36] Fix | Delete
{
[37] Fix | Delete
$this->response = $response;
[38] Fix | Delete
}
[39] Fix | Delete
}
[40] Fix | Delete
[41] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function