Completed
Push — master ( 1096eb...881192 )
by Indra
01:44
created
Service/RateLimitHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@
 block discarded – undo
127 127
     public static function generateCacheKey(string $ip, string $username = null, string $userRole = null): string
128 128
     {
129 129
         if (!empty($username) && !empty($userRole)) {
130
-            return sprintf('_api_rate_limit_metadata$%s', sha1($userRole . $username));
130
+            return sprintf('_api_rate_limit_metadata$%s', sha1($userRole.$username));
131 131
         }
132 132
 
133 133
         return sprintf('_api_rate_limit_metadata$%s', sha1($ip));
Please login to merge, or discard this patch.