Skip to content

Commit

Permalink
refactor: returns null on DebugToolbar and HoneyPot
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Dec 11, 2024
1 parent 6538738 commit 00b3b1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion system/Filters/DebugToolbar.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ public function after(RequestInterface $request, ResponseInterface $response, $a
{
service('toolbar')->prepare($request, $response);

return $response;
return null;
}
}
2 changes: 1 addition & 1 deletion system/Filters/Honeypot.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ public function after(RequestInterface $request, ResponseInterface $response, $a
{
service('honeypot')->attachHoneypot($response);

return $response;
return null;
}
}

0 comments on commit 00b3b1b

Please sign in to comment.