Completed
Pull Request — master (#128)
by
unknown
02:32
created
src/Wildcard.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,8 +26,8 @@
 block discarded – undo
26 26
 
27 27
         $matches = [];
28 28
         \preg_match_all(
29
-            self::REGEX_DELIMITER.\str_replace(self::REGEX_DELIMITER, '\\'.self::REGEX_DELIMITER,
30
-                $regex).self::REGEX_DELIMITER,
29
+            self::REGEX_DELIMITER . \str_replace(self::REGEX_DELIMITER, '\\' . self::REGEX_DELIMITER,
30
+                $regex) . self::REGEX_DELIMITER,
31 31
             $text,
32 32
             $matches
33 33
         );
Please login to merge, or discard this patch.
src/RequestLimiter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 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
 
Please login to merge, or discard this patch.