| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function register() |
||
| 25 | { |
||
| 26 | $this->mergeConfigFrom(__DIR__.'/../config/bigbluebutton.php', 'bigbluebutton'); |
||
| 27 | |||
| 28 | $this->app->singleton('Bigbluebutton', function () { |
||
| 29 | return new Bbb( |
||
| 30 | new Bigbluebutton( |
||
| 31 | $this->app['config']->get('bigbluebutton.BBB_SERVER_BASE_URL'), |
||
| 32 | $this->app['config']->get('bigbluebutton.BBB_SECURITY_SALT') |
||
| 33 | ) |
||
| 34 | ); |
||
| 35 | }); |
||
| 36 | } |
||
| 37 | } |
||
| 38 |