| Conditions | 2 |
| Paths | 1 |
| Total Lines | 19 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | public function register() |
||
| 39 | { |
||
| 40 | |||
| 41 | // 合并配置项 |
||
| 42 | $this->mergeConfigFrom(__DIR__ . '/../config.php', 'captcha'); |
||
| 43 | |||
| 44 | // 注册服务 |
||
| 45 | $this->app->singleton('captcha', function () { |
||
| 46 | |||
| 47 | $config = Config::get('captcha', array()); |
||
| 48 | |||
| 49 | if (Arr::get($config, 'debug') === null) { |
||
| 50 | // 自动开启调试模型 |
||
| 51 | Arr::set($config, 'debug', Config::get('app.debug', false)); |
||
| 52 | } |
||
| 53 | |||
| 54 | return new Captcha($config); |
||
| 55 | }); |
||
| 56 | } |
||
| 57 | |||
| 68 |