Completed
Push — master ( 0d2333...a13523 )
by Antonio Carlos
04:55
created
src/Support/AttackBlocker.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      */
110 110
     protected function checkExpiration()
111 111
     {
112
-        $this->getEnabledItems()->each(function ($index, $type) {
112
+        $this->getEnabledItems()->each(function($index, $type) {
113 113
             if (($this->now()->diffInSeconds($this->record[$type]['lastRequestAt'])) <= ($this->getMaxSecondsForType($type))) {
114 114
                 return $this->record;
115 115
             }
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
      */
212 212
     protected function increment()
213 213
     {
214
-        $this->getEnabledItems()->each(function ($index, $type) {
214
+        $this->getEnabledItems()->each(function($index, $type) {
215 215
             $this->save($type, ['requestCount' => $this->record[$type]['requestCount'] + 1]);
216 216
         });
217 217
     }
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
      */
224 224
     protected function isAttack()
225 225
     {
226
-        return $this->getEnabledItems()->filter(function ($index, $type) {
226
+        return $this->getEnabledItems()->filter(function($index, $type) {
227 227
             if (!$this->isWhitelisted($type) && $this->record[$type]['requestCount'] > $this->getMaxRequestCountForType($type)) {
228 228
                 $this->takeAction($this->record[$type]);
229 229
 
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
      */
281 281
     private function loadConfig()
282 282
     {
283
-        $this->enabledItems = collect($this->config()->get('attack_blocker.enabled'))->filter(function ($item) {
283
+        $this->enabledItems = collect($this->config()->get('attack_blocker.enabled'))->filter(function($item) {
284 284
             return $item === true;
285 285
         });
286 286
     }
@@ -310,7 +310,7 @@  discard block
 block discarded – undo
310 310
      */
311 311
     protected function loadRecordItems()
312 312
     {
313
-        $this->getEnabledItems()->each(function ($index, $type) {
313
+        $this->getEnabledItems()->each(function($index, $type) {
314 314
             if (is_null($this->record[$type] = $this->cache()->get($key = $this->makeKeyForType($type, $this->ipAddress)))) {
315 315
                 $this->record[$type] = $this->getEmptyRecord($key, $type);
316 316
             }
@@ -463,7 +463,7 @@  discard block
 block discarded – undo
463 463
         if (!$record['wasNotified'] && $this->config()->get('notifications.enabled')) {
464 464
             $this->save($record['type'], ['wasNotified' => true]);
465 465
 
466
-            collect($this->config()->get('notifications.channels'))->filter(function ($value, $channel) use ($record) {
466
+            collect($this->config()->get('notifications.channels'))->filter(function($value, $channel) use ($record) {
467 467
                 event(new AttackDetected($record, $channel));
468 468
             });
469 469
         }
Please login to merge, or discard this patch.