| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | public function register(): void |
||
| 40 | { |
||
| 41 | // Automatically apply the package configuration |
||
| 42 | $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'laravel-schemacrawler'); |
||
| 43 | |||
| 44 | // Register the main class to use with the facade |
||
| 45 | $this->app->singleton('laravel-schemacrawler', function () { |
||
| 46 | return new LaravelSchemaCrawler; |
||
| 47 | }); |
||
| 48 | } |
||
| 49 | } |
||
| 50 |