Completed
Push — integration-tests ( aca6ec )
by Cy
01:46
created
src/Connectors/PredisConnector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,11 +44,11 @@
 block discarded – undo
44 44
      * @return PredisConnection The Sentinel connection containing a configured
45 45
      * Predis Client
46 46
      */
47
-    public function connect(array $server, array $options = [ ])
47
+    public function connect(array $server, array $options = [])
48 48
     {
49 49
         // Merge the global options shared by all Sentinel connections with
50 50
         // connection-specific options
51
-        $clientOpts = array_merge($options, Arr::pull($server, 'options', [ ]));
51
+        $clientOpts = array_merge($options, Arr::pull($server, 'options', []));
52 52
 
53 53
         // Automatically set "replication" to "sentinel". This is the Sentinel
54 54
         // driver, after all.
Please login to merge, or discard this patch.
src/Configuration/Loader.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
      */
323 323
     protected function setSessionConfiguration()
324 324
     {
325
-        if (! $this->supportsSessions
325
+        if (!$this->supportsSessions
326 326
             || $this->config->get('session.driver') !== 'redis-sentinel'
327 327
             || $this->config->get('session.connection') !== null
328 328
         ) {
@@ -357,7 +357,7 @@  discard block
 block discarded – undo
357 357
     protected function mergePackageConfiguration()
358 358
     {
359 359
         $defaultConfig = require self::CONFIG_PATH;
360
-        $currentConfig = $this->config->get('redis-sentinel', [ ]);
360
+        $currentConfig = $this->config->get('redis-sentinel', []);
361 361
 
362 362
         $this->packageConfig = array_merge($defaultConfig, $currentConfig);
363 363
     }
@@ -372,7 +372,7 @@  discard block
 block discarded – undo
372 372
     {
373 373
         $connections = $this->config->get('database.redis-sentinel');
374 374
 
375
-        if (! is_array($connections)) {
375
+        if (!is_array($connections)) {
376 376
             return;
377 377
         }
378 378
 
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
      *
Please login to merge, or discard this patch.
src/Horizon/HorizonServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
             $this->createHorizonConnectionConfiguration();
65 65
 
66 66
             $class = $this->config->getVersionedRedisSentinelManagerClass();
67
-            $config = $this->config->get('database.redis-sentinel', [ ]);
67
+            $config = $this->config->get('database.redis-sentinel', []);
68 68
             $driver = Arr::pull($config, 'client', 'predis');
69 69
 
70 70
             return new RedisSentinelManager(new $class($driver, $config));
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
     protected function createHorizonConnectionConfiguration()
86 86
     {
87 87
         $horizonConfig = $this->getSelectedConnectionConfiguration();
88
-        $options = Arr::get($horizonConfig, 'options', [ ]);
88
+        $options = Arr::get($horizonConfig, 'options', []);
89 89
         $options['prefix'] = $this->config->get('horizon.prefix', 'horizon:');
90 90
 
91 91
         $horizonConfig['options'] = $options;
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
     {
129 129
         // If we're already overriding Laravel's standard Redis API, we don't
130 130
         // need to rebind the "redis" service for Horizon.
131
-        return ! $this->config->shouldOverrideLaravelRedisApi
131
+        return !$this->config->shouldOverrideLaravelRedisApi
132 132
             && $this->config->get('horizon.driver') === 'redis-sentinel';
133 133
     }
134 134
 
Please login to merge, or discard this patch.
src/RedisSentinelServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     {
85 85
         $this->app->singleton('redis-sentinel', function ($app) {
86 86
             $class = $this->config->getVersionedRedisSentinelManagerClass();
87
-            $config = $this->config->get('database.redis-sentinel', [ ]);
87
+            $config = $this->config->get('database.redis-sentinel', []);
88 88
             $driver = Arr::pull($config, 'client', 'predis');
89 89
 
90 90
             return new RedisSentinelManager(new $class($driver, $config));
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
 
128 128
         // This package's Horizon service provider will set up the queue
129 129
         // connector a bit differently, so we don't need to do it twice:
130
-        if (! $this->config->horizonAvailable) {
130
+        if (!$this->config->horizonAvailable) {
131 131
             $this->addRedisSentinelQueueConnector();
132 132
         }
133 133
 
Please login to merge, or discard this patch.
src/Connections/PredisConnection.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      * @param Client $client          The Redis client to wrap.
48 48
      * @param array  $sentinelOptions Sentinel-specific connection options.
49 49
      */
50
-    public function __construct(Client $client, array $sentinelOptions = [ ])
50
+    public function __construct(Client $client, array $sentinelOptions = [])
51 51
     {
52 52
         parent::__construct($client);
53 53
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
         foreach ($sentinelOptions as $option => $value) {
57 57
             DynamicMethod::parseFromUnderscore($option)
58 58
                 ->prepend('set')
59
-                ->callOn($this, [ $value ]);
59
+                ->callOn($this, [$value]);
60 60
         }
61 61
     }
62 62
 
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
         $method = 'subscribe'
143 143
     ) {
144 144
         $this->retryOnFailure(function () use ($method, $channels, $callback) {
145
-            $loop = $this->pubSubLoop([ $method => (array) $channels ]);
145
+            $loop = $this->pubSubLoop([$method => (array) $channels]);
146 146
 
147 147
             $this->consumeSubscription($loop, $callback);
148 148
 
Please login to merge, or discard this patch.