Completed
Push — master ( c32471...d7bf63 )
by Dmitry
36s
created
src/Plugin/Sequence.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
             return;
43 43
         }
44 44
 
45
-        if (array_key_exists($name . '_seq', $this->sequences)) {
45
+        if (array_key_exists($name.'_seq', $this->sequences)) {
46 46
             // use tarantool standard sequence name
47 47
             return;
48 48
         }
@@ -68,13 +68,13 @@  discard block
 block discarded – undo
68 68
 
69 69
         $name = $space->getName();
70 70
         if (!array_key_exists($name, $this->sequences)) {
71
-            if (array_key_exists($name . '_seq', $this->sequences)) {
71
+            if (array_key_exists($name.'_seq', $this->sequences)) {
72 72
                 // use tarantool standard sequence name
73 73
                 $name .= '_seq';
74 74
             }
75 75
         }
76 76
 
77
-        $next = $this->mapper->getClient()->call('box.sequence.' . $name . ':next');
77
+        $next = $this->mapper->getClient()->call('box.sequence.'.$name.':next');
78 78
 
79 79
         return $next[0];
80 80
     }
Please login to merge, or discard this patch.