| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public function register() |
||
| 36 | { |
||
| 37 | // Automatically apply the package configuration |
||
| 38 | $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'recaptcha'); |
||
| 39 | |||
| 40 | // Register the main class to use with the facade |
||
| 41 | $this->app->singleton('recaptcha', function () { |
||
| 42 | return new Recaptcha; |
||
| 43 | }); |
||
| 44 | } |
||
| 45 | } |
||
| 46 |