@@ -158,7 +158,7 @@ |
||
| 158 | 158 | |
| 159 | 159 | public function once(string $name, Closure $callback) |
| 160 | 160 | { |
| 161 | - $key = 'mapper-once' . $name; |
|
| 161 | + $key = 'mapper-once'.$name; |
|
| 162 | 162 | |
| 163 | 163 | $rows = $this->mapper->find('_schema', ['key' => $key]); |
| 164 | 164 | if (!count($rows)) { |
@@ -7,7 +7,6 @@ |
||
| 7 | 7 | use Closure; |
| 8 | 8 | use Exception; |
| 9 | 9 | use Tarantool\Client\Schema\Criteria; |
| 10 | -use Tarantool\Client\Schema\Space as ClientSpace; |
|
| 11 | 10 | |
| 12 | 11 | class Schema |
| 13 | 12 | { |
@@ -46,7 +46,7 @@ |
||
| 46 | 46 | $this->mapper |
| 47 | 47 | ->getPlugin(Procedure::class) |
| 48 | 48 | ->get(CreateSequence::class) |
| 49 | - ->execute($name, $primaryIndex['name'], $primaryIndex['parts'][0][0]+1); |
|
| 49 | + ->execute($name, $primaryIndex['name'], $primaryIndex['parts'][0][0] + 1); |
|
| 50 | 50 | |
| 51 | 51 | $this->mapper->getRepository('_vsequence')->flushCache(); |
| 52 | 52 | |
@@ -5,7 +5,6 @@ |
||
| 5 | 5 | namespace Tarantool\Mapper\Plugin; |
| 6 | 6 | |
| 7 | 7 | use Exception; |
| 8 | -use Tarantool\Client\Schema\Operations; |
|
| 9 | 8 | use Tarantool\Mapper\Entity; |
| 10 | 9 | use Tarantool\Mapper\Plugin; |
| 11 | 10 | use Tarantool\Mapper\Procedure\CreateSequence; |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | $pkIndex = null; |
| 45 | 45 | if ($key) { |
| 46 | 46 | // convert php to lua index |
| 47 | - $pkIndex = $space->getPrimaryField()+1; |
|
| 47 | + $pkIndex = $space->getPrimaryField() + 1; |
|
| 48 | 48 | if (!array_key_exists($key, $params) || !$params[$key]) { |
| 49 | 49 | $sequence = 1; |
| 50 | 50 | $space->getMapper() |