@@ -259,7 +259,7 @@ discard block |
||
| 259 | 259 | * @param bool $changedEntities Reference, will be set to true if any of entities changed |
| 260 | 260 | * internally. |
| 261 | 261 | */ |
| 262 | - public function hasUpdates(bool &$changedEntities = null): bool |
|
| 262 | + public function hasUpdates(bool & $changedEntities = null): bool |
|
| 263 | 263 | { |
| 264 | 264 | foreach ($this->entities as $entity) { |
| 265 | 265 | if ($entity->hasUpdates()) { |
@@ -326,7 +326,7 @@ discard block |
||
| 326 | 326 | |
| 327 | 327 | $atomics = array_merge( |
| 328 | 328 | $atomics, |
| 329 | - $entity->buildAtomics((!empty($container) ? $container . '.' : '') . $offset) |
|
| 329 | + $entity->buildAtomics((!empty($container) ? $container.'.' : '').$offset) |
|
| 330 | 330 | ); |
| 331 | 331 | } |
| 332 | 332 | |
@@ -315,7 +315,7 @@ discard block |
||
| 315 | 315 | if ($value instanceof CompositableInterface) { |
| 316 | 316 | $atomics = array_merge_recursive( |
| 317 | 317 | $atomics, |
| 318 | - $value->buildAtomics((!empty($container) ? $container . '.' : '') . $field) |
|
| 318 | + $value->buildAtomics((!empty($container) ? $container.'.' : '').$field) |
|
| 319 | 319 | ); |
| 320 | 320 | |
| 321 | 321 | continue; |
@@ -330,7 +330,7 @@ discard block |
||
| 330 | 330 | |
| 331 | 331 | if (array_key_exists($field, $this->changes)) { |
| 332 | 332 | //Generating set operation for changed field |
| 333 | - $atomics['$set'][(!empty($container) ? $container . '.' : '') . $field] = $value; |
|
| 333 | + $atomics['$set'][(!empty($container) ? $container.'.' : '').$field] = $value; |
|
| 334 | 334 | } |
| 335 | 335 | } |
| 336 | 336 | |
@@ -377,7 +377,7 @@ discard block |
||
| 377 | 377 | { |
| 378 | 378 | $public = parent::publicFields(); |
| 379 | 379 | |
| 380 | - array_walk_recursive($public, function (&$value) { |
|
| 380 | + array_walk_recursive($public, function(&$value) { |
|
| 381 | 381 | if ($value instanceof ObjectID) { |
| 382 | 382 | $value = (string)$value; |
| 383 | 383 | } |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | */ |
| 68 | 68 | public function identifier(string $identifier): string |
| 69 | 69 | { |
| 70 | - return $identifier == '*' ? '*' : '[' . str_replace('[', '[[', $identifier) . ']'; |
|
| 70 | + return $identifier == '*' ? '*' : '['.str_replace('[', '[[', $identifier).']'; |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | /** |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | $this->logger()->info("Transaction: new savepoint 'SVP{$name}'"); |
| 126 | 126 | } |
| 127 | 127 | |
| 128 | - $this->statement('SAVE TRANSACTION ' . $this->identifier("SVP{$name}")); |
|
| 128 | + $this->statement('SAVE TRANSACTION '.$this->identifier("SVP{$name}")); |
|
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | /** |
@@ -158,6 +158,6 @@ discard block |
||
| 158 | 158 | if ($this->isProfiling()) { |
| 159 | 159 | $this->logger()->info("Transaction: rollback savepoint 'SVP{$name}'"); |
| 160 | 160 | } |
| 161 | - $this->statement('ROLLBACK TRANSACTION ' . $this->identifier("SVP{$name}")); |
|
| 161 | + $this->statement('ROLLBACK TRANSACTION '.$this->identifier("SVP{$name}")); |
|
| 162 | 162 | } |
| 163 | 163 | } |
| 164 | 164 | \ No newline at end of file |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | $arguments[0] = $this->prepare($arguments[0]); |
| 130 | 130 | |
| 131 | 131 | //Routing where |
| 132 | - call_user_func_array([$this->query, 'and' . ucfirst($this->target)], $arguments); |
|
| 132 | + call_user_func_array([$this->query, 'and'.ucfirst($this->target)], $arguments); |
|
| 133 | 133 | |
| 134 | 134 | return $this; |
| 135 | 135 | } |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | $arguments[0] = $this->prepare($arguments[0]); |
| 160 | 160 | |
| 161 | 161 | //Routing where |
| 162 | - call_user_func_array([$this->query, 'or' . ucfirst($this->target)], $arguments); |
|
| 162 | + call_user_func_array([$this->query, 'or'.ucfirst($this->target)], $arguments); |
|
| 163 | 163 | |
| 164 | 164 | return $this; |
| 165 | 165 | } |
@@ -54,7 +54,7 @@ |
||
| 54 | 54 | */ |
| 55 | 55 | public function getName(): string |
| 56 | 56 | { |
| 57 | - $name = ($this->isUnique() ? 'unique_' : 'index_') . join('_', $this->getColumns()); |
|
| 57 | + $name = ($this->isUnique() ? 'unique_' : 'index_').join('_', $this->getColumns()); |
|
| 58 | 58 | |
| 59 | 59 | return strlen($name) > 64 ? md5($name) : $name; |
| 60 | 60 | } |
@@ -276,7 +276,7 @@ |
||
| 276 | 276 | if (!empty($filter = $this->mutatorsConfig->getMutators($column->abstractType()))) { |
| 277 | 277 | //Mutator associated with type directly |
| 278 | 278 | $resolved += $filter; |
| 279 | - } elseif (!empty($filter = $this->mutatorsConfig->getMutators('php:' . $column->phpType()))) { |
|
| 279 | + } elseif (!empty($filter = $this->mutatorsConfig->getMutators('php:'.$column->phpType()))) { |
|
| 280 | 280 | //Mutator associated with php type |
| 281 | 281 | $resolved += $filter; |
| 282 | 282 | } |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | throw new CacheException('Entity cache size exceeded'); |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | - return $this->entities[$class . '.' . $identity] = $entity; |
|
| 69 | + return $this->entities[$class.'.'.$identity] = $entity; |
|
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | /** |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | */ |
| 78 | 78 | public function forget(string $class, string $identity) |
| 79 | 79 | { |
| 80 | - unset($this->entities[$class . '.' . $identity]); |
|
| 80 | + unset($this->entities[$class.'.'.$identity]); |
|
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | /** |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | */ |
| 91 | 91 | public function has(string $class, string $identity): bool |
| 92 | 92 | { |
| 93 | - return isset($this->entities[$class . '.' . $identity]); |
|
| 93 | + return isset($this->entities[$class.'.'.$identity]); |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | /** |
@@ -103,11 +103,11 @@ discard block |
||
| 103 | 103 | */ |
| 104 | 104 | public function get(string $class, string $identity) |
| 105 | 105 | { |
| 106 | - if (empty($this->entities[$class . '.' . $identity])) { |
|
| 106 | + if (empty($this->entities[$class.'.'.$identity])) { |
|
| 107 | 107 | return null; |
| 108 | 108 | } |
| 109 | 109 | |
| 110 | - return $this->entities[$class . '.' . $identity]; |
|
| 110 | + return $this->entities[$class.'.'.$identity]; |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | /** |
@@ -218,8 +218,8 @@ discard block |
||
| 218 | 218 | bool $unique = false, |
| 219 | 219 | bool $resetState = false |
| 220 | 220 | ): AbstractTable { |
| 221 | - if (isset($this->tables[$database . '.' . $table])) { |
|
| 222 | - $schema = $this->tables[$database . '.' . $table]; |
|
| 221 | + if (isset($this->tables[$database.'.'.$table])) { |
|
| 222 | + $schema = $this->tables[$database.'.'.$table]; |
|
| 223 | 223 | |
| 224 | 224 | if ($unique) { |
| 225 | 225 | throw new DoubleReferenceException( |
@@ -229,7 +229,7 @@ discard block |
||
| 229 | 229 | } else { |
| 230 | 230 | //Requesting thought DatabaseManager |
| 231 | 231 | $schema = $this->manager->database($database)->table($table)->getSchema(); |
| 232 | - $this->tables[$database . '.' . $table] = $schema; |
|
| 232 | + $this->tables[$database.'.'.$table] = $schema; |
|
| 233 | 233 | } |
| 234 | 234 | |
| 235 | 235 | $schema = clone $schema; |
@@ -426,10 +426,10 @@ discard block |
||
| 426 | 426 | //We have to make sure that local table name is used |
| 427 | 427 | $table = substr($schema->getName(), strlen($schema->getPrefix())); |
| 428 | 428 | |
| 429 | - if (empty($this->tables[$database . '.' . $table])) { |
|
| 429 | + if (empty($this->tables[$database.'.'.$table])) { |
|
| 430 | 430 | throw new SchemaException("AbstractTable must be requested before pushing back"); |
| 431 | 431 | } |
| 432 | 432 | |
| 433 | - $this->tables[$database . '.' . $table] = $schema; |
|
| 433 | + $this->tables[$database.'.'.$table] = $schema; |
|
| 434 | 434 | } |
| 435 | 435 | } |
| 436 | 436 | \ No newline at end of file |
@@ -42,7 +42,7 @@ |
||
| 42 | 42 | { |
| 43 | 43 | $target = $this->getDefinition()->targetContext(); |
| 44 | 44 | if (empty($target)) { |
| 45 | - throw new RelationSchemaException("Unable to get target context in " . get_class($this)); |
|
| 45 | + throw new RelationSchemaException("Unable to get target context in ".get_class($this)); |
|
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | return $builder->requestTable($target->getTable(), $target->getDatabase()); |