Skip to content

Commit 0678da2

Browse files
authored
Merge pull request #6651 from kenjis/refactor-Filters
refactor: remove unnecessary "&" in Filters
2 parents 9f42e31 + f1dfdc8 commit 0678da2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

system/Filters/Filters.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,11 +143,11 @@ private function discoverFilters()
143143
}
144144

145145
/**
146-
* Set the response explicity.
146+
* Set the response explicitly.
147147
*/
148148
public function setResponse(ResponseInterface $response)
149149
{
150-
$this->response = &$response;
150+
$this->response = $response;
151151
}
152152

153153
/**

0 commit comments

Comments
 (0)