Remove middleware bypass

This commit is contained in:
Marcus Moore 2023-02-22 12:33:55 -08:00
parent aae2106658
commit 931ca98c02
No known key found for this signature in database

View file

@ -23,9 +23,6 @@ class SecurityHeaders
public function handle($request, Closure $next)
{
if (App::environment(['testing', 'testing-ci'])) {
return $next($request);
}
$this->removeUnwantedHeaders($this->unwantedHeaderList);
$response = $next($request);