Skip to content

Commit 408ad97

Browse files
authored
Merge pull request #2614 from shakaran/patch-3
Add missing setResponse() setter for GetResponseUserEvent
2 parents cb29668 + 6db55ff commit 408ad97

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Event/GetResponseUserEvent.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)