PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Cache
/
RateLimiting
<?php namespace Illuminate\Cache\RateLimiting; class GlobalLimit extends Limit { /** * Create a new limit instance. * * @param int $maxAttempts * @param int $decayMinutes * @return void */ public function __construct(int $maxAttempts, int $decayMinutes = 1) { parent::__construct('', $maxAttempts, $decayMinutes); } }
[-] Limit.php
[edit]
[+]
..
[-] GlobalLimit.php
[edit]
[-] Unlimited.php
[edit]