Skip to content

Commit

Permalink
Filter typos changes
Browse files Browse the repository at this point in the history
  • Loading branch information
atishhamte committed Apr 17, 2019
1 parent 02d1340 commit 537619b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions system/Filters/Filters.php
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ public function initialize(string $uri = null)
*
* @return array
*/
public function getFilters()
public function getFilters(): array
{
return $this->filters;
}
Expand Down Expand Up @@ -313,7 +313,7 @@ public function enableFilter(string $name, string $when = 'before')
/**
* Returns the arguments for a specified key, or all.
*
* @return array
* @return mixed
*/
public function getArguments(string $key = null)
{
Expand Down
6 changes: 3 additions & 3 deletions system/Filters/Honeypot.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ public function before(RequestInterface $request)
/**
* Attach a honeypot to the current response.
*
* @param CodeIgniter\HTTP\RequestInterface $request
* @param CodeIgniter\HTTP\ResponseInterface $response
*
* @param \CodeIgniter\HTTP\RequestInterface $request
* @param \CodeIgniter\HTTP\ResponseInterface $response
*
* @return void
*/
public function after(RequestInterface $request, ResponseInterface $response)
Expand Down

0 comments on commit 537619b

Please sign in to comment.