Completed
Push — integration-tests ( 828765...9c7568 )
by Cy
01:56
created
src/Configuration/Loader.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
     /**
139 139
      * Create an instance of the loader and load the configuration in one step.
140 140
      *
141
-     * @param LaravelApplication|LumenApplication $app The current application
141
+     * @param \Illuminate\Contracts\Foundation\Application $app The current application
142 142
      * instance that provides context and services needed to load the
143 143
      * appropriate configuration.
144 144
      *
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
      * This helper method enables the package's service providers to get config
204 204
      * values without having to resolve the config service from the container.
205 205
      *
206
-     * @param string|array $key     The key(s) for the value(s) to fetch.
206
+     * @param string $key     The key(s) for the value(s) to fetch.
207 207
      * @param mixed        $default Returned if the key does not exist.
208 208
      *
209 209
      * @return mixed The requested configuration value or the provided default
Please login to merge, or discard this patch.
src/RedisSentinelServiceProvider.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -69,13 +69,13 @@
 block discarded – undo
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', [ ]);
Please login to merge, or discard this patch.