Passed
Pull Request — master (#127)
by
unknown
04:29
created
src/RequestLimiter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         $this->_maxRequestCount = $maxRequests ?? self::DEFAULT_MAX_REQUESTS;
47 47
         $requestInterval = $requestIntervalSeconds ?? self::DEFAULT_REQUEST_INTERVAL;
48 48
 
49
-        $this->_storageKey = $this->_maxRequestCount  . '_' . $requestInterval;
49
+        $this->_storageKey = $this->_maxRequestCount . '_' . $requestInterval;
50 50
         $this->_restoreState($requestInterval);
51 51
     }
52 52
 
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
         $scheme = $uri->getScheme();
149 149
         if (!empty($host) && !empty($scheme))
150 150
         {
151
-            $host = $scheme . '://' . $host.$uri->getPath();
151
+            $host = $scheme . '://' . $host . $uri->getPath();
152 152
         } else
153 153
         {
154 154
             $host = $uri->getPath();
Please login to merge, or discard this patch.