Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | protected function initVar(){ |
||
23 | // if(!empty(config('irfa.lockout'))){ |
||
24 | $this->ip = Request::ip(); |
||
25 | $this->input = Request::input(config('irfa.lockout.input_name')); |
||
26 | $this->dir = config('irfa.lockout.lockout_file_path'); |
||
27 | $this->attemps = config('irfa.lockout.login_attemps'); |
||
28 | $this->except_enabled = config('irfa.lockout.enable_except_account'); |
||
29 | $this->except_accounts = config('irfa.lockout.except_account'); |
||
30 | $this->path = $this->dir.md5($this->input); |
||
31 | // } |
||
39 | } |