@@ -224,7 +224,7 @@ discard block |
||
| 224 | 224 | $found = false; |
| 225 | 225 | |
| 226 | 226 | foreach (array_merge($this->metaMappings, $this->fieldMappings) as $columnName => $columnFieldName) { |
| 227 | - if (! ($columnFieldName === $fieldName && $this->columnOwnerMap[$columnName] === $alias)) { |
|
| 227 | + if ( ! ($columnFieldName === $fieldName && $this->columnOwnerMap[$columnName] === $alias)) { |
|
| 228 | 228 | continue; |
| 229 | 229 | } |
| 230 | 230 | |
@@ -339,7 +339,7 @@ discard block |
||
| 339 | 339 | throw new \LogicException(sprintf('Alias %s does not exist in alias map', $alias)); |
| 340 | 340 | } |
| 341 | 341 | |
| 342 | - if (! $this->isMixed && $this->scalarMappings) { |
|
| 342 | + if ( ! $this->isMixed && $this->scalarMappings) { |
|
| 343 | 343 | $this->isMixed = true; |
| 344 | 344 | } |
| 345 | 345 | |
@@ -384,7 +384,7 @@ discard block |
||
| 384 | 384 | $this->scalarMappings[$columnName] = $alias; |
| 385 | 385 | $this->typeMappings[$columnName] = $type; |
| 386 | 386 | |
| 387 | - if (! $this->isMixed && $this->fieldMappings) { |
|
| 387 | + if ( ! $this->isMixed && $this->fieldMappings) { |
|
| 388 | 388 | $this->isMixed = true; |
| 389 | 389 | } |
| 390 | 390 | |