| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function register(): void |
||
| 30 | { |
||
| 31 | // Automatically apply the package configuration |
||
| 32 | $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'teamwork'); |
||
| 33 | |||
| 34 | $this->commands([ |
||
| 35 | InstallCommand::class, |
||
| 36 | PublishCommand::class, |
||
| 37 | ]); |
||
| 38 | |||
| 39 | // Register the main class to use with the facade |
||
| 40 | $this->app->singleton('teamwork', function () { |
||
| 41 | return new Teamwork; |
||
| 42 | }); |
||
| 43 | } |
||
| 44 | } |
||
| 45 |