@@ -163,7 +163,7 @@ |
||
| 163 | 163 | foreach ($aliases as $property => $alias) { |
| 164 | 164 | if (isset($userOptions[$property])) { |
| 165 | 165 | //Let's create some default options based on user specified values |
| 166 | - $proposed['option:' . $alias] = $userOptions[$property]; |
|
| 166 | + $proposed['option:'.$alias] = $userOptions[$property]; |
|
| 167 | 167 | } |
| 168 | 168 | } |
| 169 | 169 | |
@@ -37,7 +37,7 @@ |
||
| 37 | 37 | |
| 38 | 38 | if ($minify) { |
| 39 | 39 | //Let's use column number instead of full name |
| 40 | - $column = 'c' . count($columns); |
|
| 40 | + $column = 'c'.count($columns); |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | $columns[] = "{$alias}.{$name} AS {$prefix}{$column}"; |
@@ -244,6 +244,6 @@ |
||
| 244 | 244 | $names = [$source->getRole(), $target->getRole()]; |
| 245 | 245 | asort($names); |
| 246 | 246 | |
| 247 | - return implode('_', $names) . static::PIVOT_POSTFIX; |
|
| 247 | + return implode('_', $names).static::PIVOT_POSTFIX; |
|
| 248 | 248 | } |
| 249 | 249 | } |
| 250 | 250 | \ No newline at end of file |
@@ -106,6 +106,6 @@ |
||
| 106 | 106 | $pivotData = $data[ORMInterface::PIVOT_DATA]; |
| 107 | 107 | |
| 108 | 108 | //Unique row criteria |
| 109 | - return $pivotData[$this->innerPivotKey] . '.' . $pivotData[$this->outerPivotKey]; |
|
| 109 | + return $pivotData[$this->innerPivotKey].'.'.$pivotData[$this->outerPivotKey]; |
|
| 110 | 110 | } |
| 111 | 111 | } |
| 112 | 112 | \ No newline at end of file |
@@ -424,7 +424,7 @@ |
||
| 424 | 424 | |
| 425 | 425 | if (!$injector instanceof InjectorInterface) { |
| 426 | 426 | throw new InjectionException( |
| 427 | - "Class '" . get_class($injector) . "' must be an instance of InjectorInterface for '{$reflection->getName()}'" |
|
| 427 | + "Class '".get_class($injector)."' must be an instance of InjectorInterface for '{$reflection->getName()}'" |
|
| 428 | 428 | ); |
| 429 | 429 | } |
| 430 | 430 | |
@@ -426,7 +426,7 @@ |
||
| 426 | 426 | ): AccessorInterface { |
| 427 | 427 | if (!is_string($accessor) || !class_exists($accessor)) { |
| 428 | 428 | throw new EntityException( |
| 429 | - "Unable to create accessor for field {$name} in " . static::class |
|
| 429 | + "Unable to create accessor for field {$name} in ".static::class |
|
| 430 | 430 | ); |
| 431 | 431 | } |
| 432 | 432 | |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | $args[0] = $this->prepare($args[0]); |
| 130 | 130 | |
| 131 | 131 | //Routing where |
| 132 | - call_user_func_array([$this->query, 'and' . ucfirst($this->target)], $args); |
|
| 132 | + call_user_func_array([$this->query, 'and'.ucfirst($this->target)], $args); |
|
| 133 | 133 | |
| 134 | 134 | return $this; |
| 135 | 135 | } |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | $args[0] = $this->prepare($args[0]); |
| 159 | 159 | |
| 160 | 160 | //Routing where |
| 161 | - call_user_func_array([$this->query, 'or' . ucfirst($this->target)], $args); |
|
| 161 | + call_user_func_array([$this->query, 'or'.ucfirst($this->target)], $args); |
|
| 162 | 162 | |
| 163 | 163 | return $this; |
| 164 | 164 | } |
@@ -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 hasChanges(bool &$changedEntities = null): bool |
|
| 262 | + public function hasChanges(bool & $changedEntities = null): bool |
|
| 263 | 263 | { |
| 264 | 264 | foreach ($this->entities as $entity) { |
| 265 | 265 | if ($entity->hasChanges()) { |
@@ -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 | |
@@ -78,7 +78,7 @@ |
||
| 78 | 78 | */ |
| 79 | 79 | public function primaryKey(): string |
| 80 | 80 | { |
| 81 | - return $this->getAlias() . '.' . $this->schema[Record::SH_PRIMARY_KEY]; |
|
| 81 | + return $this->getAlias().'.'.$this->schema[Record::SH_PRIMARY_KEY]; |
|
| 82 | 82 | } |
| 83 | 83 | |
| 84 | 84 | /** |