@@ -69,13 +69,13 @@ |
||
69 | 69 | } |
70 | 70 | } |
71 | 71 | |
72 | - /** |
|
73 | - * Register the core Redis Sentinel connection manager. |
|
74 | - * |
|
75 | - * @return void |
|
76 | - */ |
|
77 | - protected function registerServices() |
|
78 | - { |
|
72 | + /** |
|
73 | + * Register the core Redis Sentinel connection manager. |
|
74 | + * |
|
75 | + * @return void |
|
76 | + */ |
|
77 | + protected function registerServices() |
|
78 | + { |
|
79 | 79 | $this->app->singleton('redis-sentinel', function ($app) { |
80 | 80 | $class = $this->config->getVersionedRedisSentinelManagerClass(); |
81 | 81 | $config = $this->config->get('database.redis-sentinel', [ ]); |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | /** |
148 | 148 | * Create an instance of the loader and load the configuration in one step. |
149 | 149 | * |
150 | - * @param LaravelApplication|LumenApplication $app The current application |
|
150 | + * @param \Illuminate\Contracts\Container\Container $app The current application |
|
151 | 151 | * instance that provides context and services needed to load the |
152 | 152 | * appropriate configuration. |
153 | 153 | * |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | * This helper method enables the package's service providers to set config |
230 | 230 | * values without having to resolve the config service from the container. |
231 | 231 | * |
232 | - * @param string|array $key The key of the value or a tree of values as |
|
232 | + * @param string $key The key of the value or a tree of values as |
|
233 | 233 | * an associative array. |
234 | 234 | * @param mixed $value The value to set for the specified key. |
235 | 235 | * |