]> BookStack Code Mirror - bookstack/blobdiff - tests/SecurityHeaderTest.php
Fix coding style
[bookstack] / tests / SecurityHeaderTest.php
index fe25ef3f00b6a95de8021c7f99b53a82495a910b..2bde890ad58139ef0bc4d33416e3d4cfe68fa462 100644 (file)
@@ -125,6 +125,7 @@ class SecurityHeaderTest extends TestCase
     protected function getCspHeader(TestResponse $resp, string $type): string
     {
         $cspHeaders = collect($resp->headers->all('Content-Security-Policy'));
+
         return $cspHeaders->filter(function ($val) use ($type) {
             return strpos($val, $type) === 0;
         })->first() ?? '';