Skip to content

Commit 82bf6f9

Browse files
authored
Merge pull request #2613 from shakaran/patch-2
Add missing setResponse() setter for GetResponseGroupEvent
2 parents 408ad97 + 445de24 commit 82bf6f9

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)