@@ -42,7 +42,7 @@ discard block |
||
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 |
||
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 | } |