| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | public function register(): void |
||
| 16 | { |
||
| 17 | $this->app->bind('delete-storable-file', static function () { |
||
| 18 | return new DeleteStorableFile; |
||
| 19 | }); |
||
| 20 | |||
| 21 | $this->app->bind('generate-storable-file', static function () { |
||
| 22 | return new GenerateStorableFile; |
||
| 23 | }); |
||
| 24 | |||
| 25 | $this->mergeConfigFrom(__DIR__ . '/../config/storable.php', 'storable'); |
||
| 26 | } |
||
| 40 |