| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function register() |
||
| 29 | { |
||
| 30 | $this->app->singleton('centrifugo', function ($app) { |
||
| 31 | $config = $app->make('config')->get('broadcasting.connections.centrifugo'); |
||
| 32 | $http = new HttpClient(); |
||
| 33 | |||
| 34 | return new Laracent($config, $http); |
||
| 35 | }); |
||
| 36 | |||
| 37 | $this->app->alias('centrifugo', 'AlexHnydiuk\Laracent\Laracent'); |
||
| 38 | $this->app->alias('centrifugo', 'AlexHnydiuk\Laracent\Contracts\Centrifugo'); |
||
| 39 | } |
||
| 41 |