| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | public function register() |
||
| 44 | { |
||
| 45 | // Automatically apply the package configuration |
||
| 46 | $this->mergeConfigFrom(__DIR__.'/../config/steps.php', 'steps'); |
||
| 47 | |||
| 48 | // Register the main class to use with the facade |
||
| 49 | $this->app->singleton('laravel-multistep-forms', function ($app) { |
||
| 50 | return new MultiStepManager($app); |
||
| 51 | }); |
||
| 52 | } |
||
| 53 | } |
||
| 54 |