Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1.0019 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | 1 | public function boot() |
|
13 | { |
||
14 | 1 | $this->publishes([ |
|
15 | 1 | base_path('vendor/mews/captcha/config/captcha.php') => config_path('captcha.php'), |
|
16 | 1 | ], 'config'); |
|
17 | |||
18 | 1 | $this->app['validator']->extend('captcha', function ($attribute, $value, $parameters) { |
|
19 | return captcha_check($value); |
||
20 | 1 | }); |
|
21 | 1 | } |
|
22 | } |
||
23 |