| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | public function register() |
||
| 24 | { |
||
| 25 | $this->mergeConfigFrom( |
||
| 26 | __DIR__ . '/../config/luminark/rivet.php', 'luminark.rivet' |
||
| 27 | ); |
||
| 28 | |||
| 29 | $this->app->bind(FileProcessorInterface::class, function ($app) { |
||
| 30 | return $app->make(FileProcessor::class); |
||
| 31 | }); |
||
| 32 | $this->app->bind(AttachingListenerInterface::class, function ($app) { |
||
| 33 | return $app->make(AttachingListener::class); |
||
| 34 | }); |
||
| 35 | $this->app->register(RivetEventServiceProvider::class); |
||
| 36 | } |
||
| 37 | } |
||
| 38 |