Browse Source

Fix phpcs

Mark Story 5 years ago
parent
commit
ca2a768018
1 changed files with 1 additions and 0 deletions
  1. 1 0
      tests/TestCase/Http/Middleware/CsrfProtectionMiddlewareTest.php

+ 1 - 0
tests/TestCase/Http/Middleware/CsrfProtectionMiddlewareTest.php

@@ -39,6 +39,7 @@ class CsrfProtectionMiddlewareTest extends TestCase
     {
         // Create an old style token. These tokens are hexadecimal with an hmac.
         $random = Security::randomString(CsrfProtectionMiddleware::TOKEN_VALUE_LENGTH);
+
         return $random . hash_hmac('sha1', $random, Security::getSalt());
     }