| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function register() |
||
| 25 | { |
||
| 26 | // Automatically apply the package configuration |
||
| 27 | $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'file-vault'); |
||
| 28 | |||
| 29 | // Register the main class to use with the facade |
||
| 30 | $this->app->singleton('file-vault', function () { |
||
| 31 | return new FileVault; |
||
| 32 | }); |
||
| 33 | } |
||
| 34 | } |
||
| 35 |