Completed
Push — 2.0.x ( 0e0238...b059a7 )
by Cy
02:00
created
src/Connectors/PredisConnector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@
 block discarded – undo
119 119
         foreach ($sentinelOpts as $option => $value) {
120 120
             DynamicMethod::parseFromUnderscore($option)
121 121
                 ->prepend('set')
122
-                ->callOn($connection, [ $value ]);
122
+                ->callOn($connection, [$value]);
123 123
         }
124 124
     }
125 125
 }
Please login to merge, or discard this patch.
src/RedisSentinelManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     protected function resolve($name)
46 46
     {
47
-        $options = Arr::get($this->config, 'options', [ ]);
47
+        $options = Arr::get($this->config, 'options', []);
48 48
 
49 49
         if (isset($this->config[$name])) {
50 50
             return $this->connector()->connect($this->config[$name], $options);
Please login to merge, or discard this patch.