| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 40 | public function register() |
||
| 41 | { |
||
| 42 | $this->mergeConfigFrom(__DIR__.'/../config/mailbox.php', 'mailbox'); |
||
| 43 | |||
| 44 | $this->app->singleton('mailbox', function () { |
||
| 45 | return new Router($this->app); |
||
| 46 | }); |
||
| 47 | |||
| 48 | $this->app->singleton(MailboxManager::class, function () { |
||
| 49 | return new MailboxManager($this->app); |
||
| 50 | }); |
||
| 58 |