Skip to content

Commit 3fc7e36

Browse files
authored
Merge pull request #2606 from shakaran/patch-1
Add missing setResponse() setter for FilterUserResponseEvent
2 parents 315f837 + a90fedf commit 3fc7e36

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

Event/FilterUserResponseEvent.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,14 @@ public function getResponse()
3939
{
4040
return $this->response;
4141
}
42+
43+
/**
44+
* Sets a new response object.
45+
*
46+
* @param Response $response
47+
*/
48+
public function setResponse(Response $response)
49+
{
50+
$this->response = $response;
51+
}
4252
}

0 commit comments

Comments
 (0)