| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 45 | public function register() |
||
| 46 | { |
||
| 47 | $this->mergeConfigFrom( |
||
| 48 | __DIR__.'/config/mattermost.php', 'mattermost' |
||
| 49 | ); |
||
| 50 | |||
| 51 | $this->app->singleton('mattermost', function($app) { |
||
| 52 | return new Driver($app); |
||
| 53 | }); |
||
| 54 | |||
| 55 | $this->app->bind('mattermost.server', function ($app) { |
||
| 56 | return $app['mattermost']->server(); |
||
| 57 | }); |
||
| 60 |