Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | protected function initVar(){ |
||
21 | $this->ip = Request::ip(); |
||
22 | $this->input = Request::input(config('irfa.lockout.input_name')); |
||
23 | $this->dir = config('irfa.lockout.lockout_file_path'); |
||
24 | $this->attemps = config('irfa.lockout.login_attemps'); |
||
25 | $this->path = $this->dir.md5($this->input); |
||
26 | } |
||
33 | } |