1 | <?php |
||
8 | class RedisSentinelServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Add the connector to the queue drivers |
||
12 | */ |
||
13 | public function boot() |
||
17 | |||
18 | /** |
||
19 | * Register the service provider. |
||
20 | * |
||
21 | * @return void |
||
22 | */ |
||
23 | public function register() |
||
29 | |||
30 | protected function registerRedisSentinelConnector(QueueManager $manager) |
||
36 | |||
37 | /** |
||
38 | * Get the services provided by the provider. |
||
39 | * |
||
40 | * @return array |
||
41 | */ |
||
42 | public function provides() |
||
46 | } |
||
47 |