Skip to content

Commit 4189042

Browse files
authored
Missing setter for FilterUserResponseEvent
Add missing setter setResponse for Response object in FilterUserResponseEvent class
1 parent 315f837 commit 4189042

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)