Passed
Push — master ( 11adb6...767c42 )
by M
01:59
created
tests/ClientsTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
         // 'connect' paramater
22 22
         'host' => '127.0.0.1', //can be a host, or the path to a unix domain socket
23 23
         'port' => 6379,
24
-        'timeout' => 1.0,      //value in seconds (optional, default is 0 meaning unlimited)
24
+        'timeout' => 1.0, //value in seconds (optional, default is 0 meaning unlimited)
25 25
         'read_timeout' => 1.0, //value in seconds (optional, default is 0 meaning unlimited)
26 26
 
27 27
         // 'auth' paramater
Please login to merge, or discard this patch.
src/Clients.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,9 +18,9 @@
 block discarded – undo
18 18
 {
19 19
     protected $config;
20 20
     private $_defaultConfig = [
21
-        'host' => null,        //can be a host, or the path to a unix domain socket
21
+        'host' => null, //can be a host, or the path to a unix domain socket
22 22
         'port' => 6379,
23
-        'timeout' => 0.0,      //value in seconds (optional, default is 0 meaning unlimited)
23
+        'timeout' => 0.0, //value in seconds (optional, default is 0 meaning unlimited)
24 24
         'password' => null,
25 25
         'serializer' => \Redis::SERIALIZER_NONE,
26 26
         'persistent' => false, //default is connect
Please login to merge, or discard this patch.