Skip to content

Commit 445de24

Browse files
authored
Add missing setResponse() setter for GetResponseGroupEvent
Add missing setResponse() setter for GetResponseGroupEvent. Follows the mentioned in PR #2606
1 parent 3fc7e36 commit 445de24

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Event/GetResponseGroupEvent.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,14 @@ public function getResponse()
3535
{
3636
return $this->response;
3737
}
38+
39+
/**
40+
* Sets a new response object.
41+
*
42+
* @param Response $response
43+
*/
44+
public function setResponse(Response $response)
45+
{
46+
$this->response = $response;
47+
}
3848
}

0 commit comments

Comments
 (0)