ソースを参照

Optimized the canPass() functions

rodehoed 5 年 前
コミット
af5a14afc3
1 ファイル変更3 行追加1 行削除
  1. 3 1
      lib/Persistence/TrafficLimiter.php

+ 3 - 1
lib/Persistence/TrafficLimiter.php

@@ -122,7 +122,9 @@ class TrafficLimiter extends AbstractPersistence
         $range   = \IPLib\Factory::rangeFromString(trim($ipRange));
 
         // If $range is null something went wrong (possible invalid ip given in config). It's here becaue matches($range) does not accepts null vallue
-        if ($range == null) return false;
+        if ($range == null) {
+            return false;
+        }
 
         // Ip-lib does throws and exception when something goes wrong, if so we want to catch it and set contained to false
         try {