* This file is part of the ManageWP Worker plugin.
* (c) ManageWP LLC <contact@managewp.com>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
class MWP_Event_ActionResponse extends Symfony_EventDispatcher_Event
* @var MWP_Http_ResponseInterface
public function __construct(MWP_Worker_Request $request, array $params, $data)
$this->request = $request;
public function getData()
public function setData($data)
* @return MWP_Http_ResponseInterface|null
public function getResponse()
* @param MWP_Http_ResponseInterface|null $response
public function setResponse(MWP_Http_ResponseInterface $response = null)
$this->response = $response;
* @return MWP_Worker_Request
public function getRequest()
public function getParams()