Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function boot() |
||
18 | { |
||
19 | // 发布配置文件 |
||
20 | $this->publishes([ |
||
21 | __DIR__ . '/../config.php' => config_path('captcha.php') |
||
22 | ], 'config'); |
||
23 | |||
24 | // 注册路由 |
||
25 | $this->loadRoutesFrom(__DIR__ . '/../routes.php'); |
||
26 | |||
27 | // 注册验证器 |
||
28 | Validator::extend('captcha', function ($attribute, $value) { |
||
29 | |||
30 | return $this->app['captcha']->check($value); |
||
31 | }); |
||
32 | |||
33 | } |
||
34 | |||
68 |