Completed
Push — devel ( 540322...05933a )
by Philippe
03:08
created
src/services/redis/CypherKeyService.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 getAuthCodeKey($aid)
46 46
     {
47
-        return $this->namespace . ':' . $aid;
47
+        return $this->namespace.':'.$aid;
48 48
     }
49 49
 
50 50
     /**
Please login to merge, or discard this patch.
src/services/redis/ClientService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      */
46 46
     protected function getClientKey($cid)
47 47
     {
48
-        return $this->namespace . ':' . $cid;
48
+        return $this->namespace.':'.$cid;
49 49
     }
50 50
 
51 51
     /**
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
      */
56 56
     protected function getClientUsersListKey($cid)
57 57
     {
58
-        return $this->namespace . ':' . $cid . ':users';
58
+        return $this->namespace.':'.$cid.':users';
59 59
     }
60 60
 
61 61
     /**
Please login to merge, or discard this patch.