@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | */ |
215 | 215 | public function getConstructorProperties(): array |
216 | 216 | { |
217 | - $constructorProperties = array_filter($this->beanPropertyDescriptors, static function (AbstractBeanPropertyDescriptor $property) { |
|
217 | + $constructorProperties = array_filter($this->beanPropertyDescriptors, static function(AbstractBeanPropertyDescriptor $property) { |
|
218 | 218 | return !$property instanceof InheritanceReferencePropertyDescriptor && $property->isCompulsory() && !$property->isReadOnly(); |
219 | 219 | }); |
220 | 220 | |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | public function getPropertiesWithDefault(): array |
230 | 230 | { |
231 | 231 | $properties = $this->getPropertiesForTable($this->table); |
232 | - $defaultProperties = array_filter($properties, function (AbstractBeanPropertyDescriptor $property) { |
|
232 | + $defaultProperties = array_filter($properties, function(AbstractBeanPropertyDescriptor $property) { |
|
233 | 233 | return $property->hasDefault(); |
234 | 234 | }); |
235 | 235 | |
@@ -243,7 +243,7 @@ discard block |
||
243 | 243 | */ |
244 | 244 | public function getExposedProperties(): array |
245 | 245 | { |
246 | - $exposedProperties = array_filter($this->beanPropertyDescriptors, function (AbstractBeanPropertyDescriptor $property) { |
|
246 | + $exposedProperties = array_filter($this->beanPropertyDescriptors, function(AbstractBeanPropertyDescriptor $property) { |
|
247 | 247 | return !$property instanceof InheritanceReferencePropertyDescriptor && $property->getTable()->getName() === $this->table->getName(); |
248 | 248 | }); |
249 | 249 | |
@@ -349,7 +349,7 @@ discard block |
||
349 | 349 | foreach ($beanPropertyDescriptors as $beanDescriptor) { |
350 | 350 | $name = $beanDescriptor->getGetterName(); |
351 | 351 | if (isset($names[$name])) { |
352 | - throw new TDBMException('Unsolvable name conflict while generating method name "' . $name . '"'); |
|
352 | + throw new TDBMException('Unsolvable name conflict while generating method name "'.$name.'"'); |
|
353 | 353 | } else { |
354 | 354 | $names[$name] = $beanDescriptor; |
355 | 355 | } |
@@ -398,7 +398,7 @@ discard block |
||
398 | 398 | $assigns[] = $property->assignToDefaultCode()."\n"; |
399 | 399 | } |
400 | 400 | |
401 | - $body = $parentConstructorCode . implode('', $assigns); |
|
401 | + $body = $parentConstructorCode.implode('', $assigns); |
|
402 | 402 | |
403 | 403 | $constructor->setBody($body); |
404 | 404 | |
@@ -515,7 +515,7 @@ discard block |
||
515 | 515 | foreach ($this->getExposedProperties() as $beanPropertyDescriptor) { |
516 | 516 | $propertyCode = $beanPropertyDescriptor->getJsonSerializeCode(); |
517 | 517 | if (!empty($propertyCode)) { |
518 | - $body .= PHP_EOL . $propertyCode; |
|
518 | + $body .= PHP_EOL.$propertyCode; |
|
519 | 519 | } |
520 | 520 | } |
521 | 521 | |
@@ -523,11 +523,11 @@ discard block |
||
523 | 523 | foreach ($this->getMethodDescriptors() as $methodDescriptor) { |
524 | 524 | $methodCode = $methodDescriptor->getJsonSerializeCode(); |
525 | 525 | if (!empty($methodCode)) { |
526 | - $body .= PHP_EOL . $methodCode; |
|
526 | + $body .= PHP_EOL.$methodCode; |
|
527 | 527 | } |
528 | 528 | } |
529 | 529 | |
530 | - $body .= PHP_EOL . 'return $array;'; |
|
530 | + $body .= PHP_EOL.'return $array;'; |
|
531 | 531 | |
532 | 532 | $method->setBody($body); |
533 | 533 | |
@@ -622,7 +622,7 @@ discard block |
||
622 | 622 | /** @var AddInterface[] $addInterfaceAnnotations */ |
623 | 623 | $addInterfaceAnnotations = $this->annotationParser->getTableAnnotations($this->table)->findAnnotations(AddInterface::class); |
624 | 624 | |
625 | - $interfaces = [ JsonSerializable::class ]; |
|
625 | + $interfaces = [JsonSerializable::class]; |
|
626 | 626 | foreach ($addInterfaceAnnotations as $annotation) { |
627 | 627 | $interfaces[] = $annotation->getName(); |
628 | 628 | } |
@@ -662,7 +662,7 @@ discard block |
||
662 | 662 | } |
663 | 663 | } elseif ($methodDescriptor instanceof PivotTableMethodsDescriptor) { |
664 | 664 | $pivotTableMethodsDescriptors[] = $methodDescriptor; |
665 | - [ $getter, $adder, $remover, $has, $setter ] = $methodDescriptor->getCode(); |
|
665 | + [$getter, $adder, $remover, $has, $setter] = $methodDescriptor->getCode(); |
|
666 | 666 | $methods = $this->codeGeneratorListener->onBaseBeanManyToManyGenerated($getter, $adder, $remover, $has, $setter, $methodDescriptor, $this, $this->configuration, $class); |
667 | 667 | foreach ($methods as $method) { |
668 | 668 | if ($method) { |
@@ -810,7 +810,7 @@ discard block |
||
810 | 810 | |
811 | 811 | $constructorMethod = new MethodGenerator( |
812 | 812 | '__construct', |
813 | - [ new ParameterGenerator('tdbmService', TDBMService::class) ], |
|
813 | + [new ParameterGenerator('tdbmService', TDBMService::class)], |
|
814 | 814 | MethodGenerator::FLAG_PUBLIC, |
815 | 815 | '$this->tdbmService = $tdbmService;', |
816 | 816 | 'Sets the TDBM service used by this DAO.' |
@@ -822,7 +822,7 @@ discard block |
||
822 | 822 | |
823 | 823 | $saveMethod = new MethodGenerator( |
824 | 824 | 'save', |
825 | - [ new ParameterGenerator('obj', $beanClassName) ], |
|
825 | + [new ParameterGenerator('obj', $beanClassName)], |
|
826 | 826 | MethodGenerator::FLAG_PUBLIC, |
827 | 827 | '$this->tdbmService->save($obj);', |
828 | 828 | (new DocBlockGenerator( |
@@ -856,7 +856,7 @@ discard block |
||
856 | 856 | $findAllBody, |
857 | 857 | (new DocBlockGenerator("Get all $beanClassWithoutNameSpace records."))->setWordWrap(false) |
858 | 858 | ); |
859 | - $findAllMethod->setReturnType($this->resultIteratorNamespace . '\\' . $this->getResultIteratorClassName()); |
|
859 | + $findAllMethod->setReturnType($this->resultIteratorNamespace.'\\'.$this->getResultIteratorClassName()); |
|
860 | 860 | $findAllMethod = $this->codeGeneratorListener->onBaseDaoFindAllGenerated($findAllMethod, $this, $this->configuration, $class); |
861 | 861 | if ($findAllMethod !== null) { |
862 | 862 | $class->addMethodFromGenerator($findAllMethod); |
@@ -870,7 +870,7 @@ discard block |
||
870 | 870 | |
871 | 871 | foreach ($primaryKeyColumns as $primaryKeyColumn) { |
872 | 872 | if ($primaryKeyColumn === $lazyLoadingParameterName) { |
873 | - throw new TDBMException('Primary Column name `' . $lazyLoadingParameterName . '` is not allowed.'); |
|
873 | + throw new TDBMException('Primary Column name `'.$lazyLoadingParameterName.'` is not allowed.'); |
|
874 | 874 | } |
875 | 875 | $phpType = TDBMDaoGenerator::dbalTypeToPhpType($this->table->getColumn($primaryKeyColumn)->getType()); |
876 | 876 | $parameters[] = new ParameterGenerator($primaryKeyColumn, $phpType); |
@@ -886,7 +886,7 @@ discard block |
||
886 | 886 | 'getById', |
887 | 887 | $parameters, |
888 | 888 | MethodGenerator::FLAG_PUBLIC, |
889 | - "return \$this->tdbmService->findObjectByPk('$tableName', [" . implode(', ', $primaryKeyFilter) . "], [], \$$lazyLoadingParameterName);", |
|
889 | + "return \$this->tdbmService->findObjectByPk('$tableName', [".implode(', ', $primaryKeyFilter)."], [], \$$lazyLoadingParameterName);", |
|
890 | 890 | (new DocBlockGenerator( |
891 | 891 | "Get $beanClassWithoutNameSpace specified by its ID (its primary key).", |
892 | 892 | 'If the primary key does not exist, an exception is thrown.', |
@@ -963,7 +963,7 @@ discard block |
||
963 | 963 | ] |
964 | 964 | ))->setWordWrap(false) |
965 | 965 | ); |
966 | - $findMethod->setReturnType($this->resultIteratorNamespace . '\\' . $this->getResultIteratorClassName()); |
|
966 | + $findMethod->setReturnType($this->resultIteratorNamespace.'\\'.$this->getResultIteratorClassName()); |
|
967 | 967 | $findMethod = $this->codeGeneratorListener->onBaseDaoFindGenerated($findMethod, $this, $this->configuration, $class); |
968 | 968 | if ($findMethod !== null) { |
969 | 969 | $class->addMethodFromGenerator($findMethod); |
@@ -1005,7 +1005,7 @@ discard block |
||
1005 | 1005 | ] |
1006 | 1006 | ))->setWordWrap(false) |
1007 | 1007 | ); |
1008 | - $findFromSqlMethod->setReturnType($this->resultIteratorNamespace . '\\' . $this->getResultIteratorClassName()); |
|
1008 | + $findFromSqlMethod->setReturnType($this->resultIteratorNamespace.'\\'.$this->getResultIteratorClassName()); |
|
1009 | 1009 | $findFromSqlMethod = $this->codeGeneratorListener->onBaseDaoFindFromSqlGenerated($findFromSqlMethod, $this, $this->configuration, $class); |
1010 | 1010 | if ($findFromSqlMethod !== null) { |
1011 | 1011 | $class->addMethodFromGenerator($findFromSqlMethod); |
@@ -1040,7 +1040,7 @@ discard block |
||
1040 | 1040 | ] |
1041 | 1041 | ))->setWordWrap(false) |
1042 | 1042 | ); |
1043 | - $findFromRawSqlMethod->setReturnType($this->resultIteratorNamespace . '\\' . $this->getResultIteratorClassName()); |
|
1043 | + $findFromRawSqlMethod->setReturnType($this->resultIteratorNamespace.'\\'.$this->getResultIteratorClassName()); |
|
1044 | 1044 | $findFromRawSqlMethod = $this->codeGeneratorListener->onBaseDaoFindFromRawSqlGenerated($findFromRawSqlMethod, $this, $this->configuration, $class); |
1045 | 1045 | if ($findFromRawSqlMethod !== null) { |
1046 | 1046 | $class->addMethodFromGenerator($findFromRawSqlMethod); |
@@ -1174,7 +1174,7 @@ discard block |
||
1174 | 1174 | $class->setDocBlock((new DocBlockGenerator( |
1175 | 1175 | "The $baseClassName class will iterate over results of $beanClassWithoutNameSpace class.", |
1176 | 1176 | null, |
1177 | - [new Tag\MethodTag('getIterator', ['\\' . $beanClassName . '[]'])] |
|
1177 | + [new Tag\MethodTag('getIterator', ['\\'.$beanClassName.'[]'])] |
|
1178 | 1178 | ))->setWordWrap(false)); |
1179 | 1179 | |
1180 | 1180 | $file = $this->codeGeneratorListener->onBaseResultIteratorGenerated($file, $this, $this->configuration); |
@@ -1230,7 +1230,7 @@ discard block |
||
1230 | 1230 | } |
1231 | 1231 | } |
1232 | 1232 | } |
1233 | - usort($methods, static function (MethodGenerator $methodA, MethodGenerator $methodB) { |
|
1233 | + usort($methods, static function(MethodGenerator $methodA, MethodGenerator $methodB) { |
|
1234 | 1234 | return $methodA->getName() <=> $methodB->getName(); |
1235 | 1235 | }); |
1236 | 1236 | |
@@ -1379,11 +1379,11 @@ discard block |
||
1379 | 1379 | |
1380 | 1380 | if ($index->isUnique()) { |
1381 | 1381 | $parameters[] = new ParameterGenerator('additionalTablesFetch', 'array', []); |
1382 | - $params[] = new ParamTag('additionalTablesFetch', [ 'string[]' ], 'A list of additional tables to fetch (for performance improvement)'); |
|
1383 | - $params[] = new ReturnTag([ '\\'.$beanNamespace.'\\'.$beanClassName, 'null' ]); |
|
1382 | + $params[] = new ParamTag('additionalTablesFetch', ['string[]'], 'A list of additional tables to fetch (for performance improvement)'); |
|
1383 | + $params[] = new ReturnTag(['\\'.$beanNamespace.'\\'.$beanClassName, 'null']); |
|
1384 | 1384 | $method->setReturnType('?\\'.$beanNamespace.'\\'.$beanClassName); |
1385 | 1385 | |
1386 | - $docBlock = new DocBlockGenerator("Get a $beanClassName filtered by ".implode(', ', $commentArguments). '.', null, $params); |
|
1386 | + $docBlock = new DocBlockGenerator("Get a $beanClassName filtered by ".implode(', ', $commentArguments).'.', null, $params); |
|
1387 | 1387 | $docBlock->setWordWrap(false); |
1388 | 1388 | |
1389 | 1389 | $body = "\$filter = [ |
@@ -1392,12 +1392,12 @@ discard block |
||
1392 | 1392 | "; |
1393 | 1393 | } else { |
1394 | 1394 | $parameters[] = (new ParameterGenerator('orderBy'))->setDefaultValue(null); |
1395 | - $params[] = new ParamTag('orderBy', [ 'mixed' ], 'The order string'); |
|
1395 | + $params[] = new ParamTag('orderBy', ['mixed'], 'The order string'); |
|
1396 | 1396 | $parameters[] = new ParameterGenerator('additionalTablesFetch', 'array', []); |
1397 | - $params[] = new ParamTag('additionalTablesFetch', [ 'string[]' ], 'A list of additional tables to fetch (for performance improvement)'); |
|
1397 | + $params[] = new ParamTag('additionalTablesFetch', ['string[]'], 'A list of additional tables to fetch (for performance improvement)'); |
|
1398 | 1398 | $parameters[] = (new ParameterGenerator('mode', '?int'))->setDefaultValue(null); |
1399 | - $params[] = new ParamTag('mode', [ 'int', 'null' ], 'Either TDBMService::MODE_ARRAY or TDBMService::MODE_CURSOR (for large datasets). Defaults to TDBMService::MODE_ARRAY.'); |
|
1400 | - $method->setReturnType($this->resultIteratorNamespace . '\\' . $this->getResultIteratorClassName()); |
|
1399 | + $params[] = new ParamTag('mode', ['int', 'null'], 'Either TDBMService::MODE_ARRAY or TDBMService::MODE_CURSOR (for large datasets). Defaults to TDBMService::MODE_ARRAY.'); |
|
1400 | + $method->setReturnType($this->resultIteratorNamespace.'\\'.$this->getResultIteratorClassName()); |
|
1401 | 1401 | |
1402 | 1402 | $docBlock = new DocBlockGenerator("Get a list of $beanClassName filtered by ".implode(', ', $commentArguments).".", null, $params); |
1403 | 1403 | $docBlock->setWordWrap(false); |
@@ -1714,17 +1714,17 @@ discard block |
||
1714 | 1714 | * @param string $indent |
1715 | 1715 | * @return string |
1716 | 1716 | */ |
1717 | - private function psr2VarExport($var, string $indent=''): string |
|
1717 | + private function psr2VarExport($var, string $indent = ''): string |
|
1718 | 1718 | { |
1719 | 1719 | if (is_array($var)) { |
1720 | 1720 | $indexed = array_keys($var) === range(0, count($var) - 1); |
1721 | 1721 | $r = []; |
1722 | 1722 | foreach ($var as $key => $value) { |
1723 | 1723 | $r[] = "$indent " |
1724 | - . ($indexed ? '' : $this->psr2VarExport($key) . ' => ') |
|
1724 | + . ($indexed ? '' : $this->psr2VarExport($key).' => ') |
|
1725 | 1725 | . $this->psr2VarExport($value, "$indent "); |
1726 | 1726 | } |
1727 | - return "[\n" . implode(",\n", $r) . "\n" . $indent . ']'; |
|
1727 | + return "[\n".implode(",\n", $r)."\n".$indent.']'; |
|
1728 | 1728 | } |
1729 | 1729 | return var_export($var, true); |
1730 | 1730 | } |
@@ -6,7 +6,7 @@ |
||
6 | 6 | { |
7 | 7 | public static function getValidVariableName(string $variableName): string |
8 | 8 | { |
9 | - return preg_replace_callback('/^(\d+)/', static function (array $match) { |
|
9 | + return preg_replace_callback('/^(\d+)/', static function(array $match) { |
|
10 | 10 | $f = new \NumberFormatter('en', \NumberFormatter::SPELLOUT); |
11 | 11 | $number = $f->format((int) $match[0]); |
12 | 12 | return preg_replace('/[^a-z]+/i', '_', $number); |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | */ |
88 | 88 | public function getPhpType(): string |
89 | 89 | { |
90 | - return '\\' . $this->beanNamespace . '\\' . $this->getClassName(); |
|
90 | + return '\\'.$this->beanNamespace.'\\'.$this->getClassName(); |
|
91 | 91 | } |
92 | 92 | |
93 | 93 | /** |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | $referencedBeanName = $this->namingStrategy->getBeanClassName($this->foreignKey->getForeignTableName()); |
161 | 161 | |
162 | 162 | $getter = new MethodGenerator($getterName); |
163 | - $getter->setDocBlock(new DocBlockGenerator('Returns the ' . $referencedBeanName . ' object bound to this object via the ' . implode(' and ', $this->foreignKey->getUnquotedLocalColumns()) . ' column.')); |
|
163 | + $getter->setDocBlock(new DocBlockGenerator('Returns the '.$referencedBeanName.' object bound to this object via the '.implode(' and ', $this->foreignKey->getUnquotedLocalColumns()).' column.')); |
|
164 | 164 | |
165 | 165 | /*$types = [ $referencedBeanName ]; |
166 | 166 | if ($isNullable) { |
@@ -168,10 +168,10 @@ discard block |
||
168 | 168 | } |
169 | 169 | $getter->getDocBlock()->setTag(new ReturnTag($types));*/ |
170 | 170 | |
171 | - $getter->setReturnType(($isNullable ? '?' : '') . $this->beanNamespace . '\\' . $referencedBeanName); |
|
171 | + $getter->setReturnType(($isNullable ? '?' : '').$this->beanNamespace.'\\'.$referencedBeanName); |
|
172 | 172 | $tdbmFk = ForeignKey::createFromFk($this->foreignKey); |
173 | 173 | |
174 | - $getter->setBody('return $this->getRef(' . var_export($tdbmFk->getCacheKey(), true) . ', ' . var_export($tableName, true) . ');'); |
|
174 | + $getter->setBody('return $this->getRef('.var_export($tdbmFk->getCacheKey(), true).', '.var_export($tableName, true).');'); |
|
175 | 175 | |
176 | 176 | if ($this->isGetterProtected()) { |
177 | 177 | $getter->setVisibility(AbstractMemberGenerator::VISIBILITY_PROTECTED); |
@@ -179,13 +179,13 @@ discard block |
||
179 | 179 | |
180 | 180 | if (!$this->isReadOnly()) { |
181 | 181 | $setter = new MethodGenerator($setterName); |
182 | - $setter->setDocBlock(new DocBlockGenerator('The setter for the ' . $referencedBeanName . ' object bound to this object via the ' . implode(' and ', $this->foreignKey->getUnquotedLocalColumns()) . ' column.')); |
|
182 | + $setter->setDocBlock(new DocBlockGenerator('The setter for the '.$referencedBeanName.' object bound to this object via the '.implode(' and ', $this->foreignKey->getUnquotedLocalColumns()).' column.')); |
|
183 | 183 | |
184 | - $setter->setParameter(new ParameterGenerator('object', ($isNullable ? '?' : '') . $this->beanNamespace . '\\' . $referencedBeanName)); |
|
184 | + $setter->setParameter(new ParameterGenerator('object', ($isNullable ? '?' : '').$this->beanNamespace.'\\'.$referencedBeanName)); |
|
185 | 185 | |
186 | 186 | $setter->setReturnType('void'); |
187 | 187 | |
188 | - $setter->setBody('$this->setRef(' . var_export($tdbmFk->getCacheKey(), true) . ', $object, ' . var_export($tableName, true) . ');'); |
|
188 | + $setter->setBody('$this->setRef('.var_export($tdbmFk->getCacheKey(), true).', $object, '.var_export($tableName, true).');'); |
|
189 | 189 | |
190 | 190 | if ($this->isSetterProtected()) { |
191 | 191 | $setter->setVisibility(AbstractMemberGenerator::VISIBILITY_PROTECTED); |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | /** @var Annotation\JsonFormat|null $jsonFormat */ |
225 | 225 | $jsonFormat = $this->findAnnotation(Annotation\JsonFormat::class); |
226 | 226 | if ($jsonFormat !== null) { |
227 | - $method = $jsonFormat->method ?? 'get' . ucfirst($jsonFormat->property); |
|
227 | + $method = $jsonFormat->method ?? 'get'.ucfirst($jsonFormat->property); |
|
228 | 228 | $format = "$method()"; |
229 | 229 | } else { |
230 | 230 | $stopRecursion = $this->findAnnotation(Annotation\JsonRecursive::class) ? '' : 'true'; |
@@ -272,10 +272,10 @@ discard block |
||
272 | 272 | $columnGetterName = $descriptor->getGetterName(); |
273 | 273 | $rows[] = "'$indexName' => $propertyAccess->$columnGetterName()"; |
274 | 274 | } else { |
275 | - throw new TDBMException('PropertyDescriptor of class `' . get_class($descriptor) . '` cannot be serialized.'); |
|
275 | + throw new TDBMException('PropertyDescriptor of class `'.get_class($descriptor).'` cannot be serialized.'); |
|
276 | 276 | } |
277 | 277 | } |
278 | - return '[' . implode(', ', $rows) . ']'; |
|
278 | + return '['.implode(', ', $rows).']'; |
|
279 | 279 | } |
280 | 280 | |
281 | 281 | private function getBeanPropertyDescriptor(string $column): AbstractBeanPropertyDescriptor |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | return $descriptor; |
286 | 286 | } |
287 | 287 | } |
288 | - throw new TDBMException('PropertyDescriptor for `'.$this->table->getName().'`.`' . $column . '` not found in `' . $this->foreignBeanDescriptor->getTable()->getName() . '`'); |
|
288 | + throw new TDBMException('PropertyDescriptor for `'.$this->table->getName().'`.`'.$column.'` not found in `'.$this->foreignBeanDescriptor->getTable()->getName().'`'); |
|
289 | 289 | } |
290 | 290 | |
291 | 291 | /** |
@@ -50,7 +50,7 @@ |
||
50 | 50 | |
51 | 51 | $pkColumnNames = $this->tdbmService->getPrimaryKeyColumns($this->mainTable); |
52 | 52 | $mysqlPlatform = new MySqlPlatform(); |
53 | - $pkColumnNames = array_map(function ($pkColumn) use ($mysqlPlatform) { |
|
53 | + $pkColumnNames = array_map(function($pkColumn) use ($mysqlPlatform) { |
|
54 | 54 | return $mysqlPlatform->quoteIdentifier($this->mainTable).'.'.$mysqlPlatform->quoteIdentifier($pkColumn); |
55 | 55 | }, $pkColumnNames); |
56 | 56 |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | $alias = AbstractQueryFactory::getColumnAlias($tableName, $columnName); |
215 | 215 | $astColumn = [ |
216 | 216 | 'expr_type' => 'colref', |
217 | - 'base_expr' => $connection->quoteIdentifier($tableName) . '.' . $connection->quoteIdentifier($columnName), |
|
217 | + 'base_expr' => $connection->quoteIdentifier($tableName).'.'.$connection->quoteIdentifier($columnName), |
|
218 | 218 | 'no_quotes' => [ |
219 | 219 | 'delim' => '.', |
220 | 220 | 'parts' => [ |
@@ -302,7 +302,7 @@ discard block |
||
302 | 302 | return $this->generateWrappedSqlCount($parsedSql); |
303 | 303 | } |
304 | 304 | |
305 | - $countSubExpr = array_map(function (array $item) { |
|
305 | + $countSubExpr = array_map(function(array $item) { |
|
306 | 306 | unset($item['alias']); |
307 | 307 | return $item; |
308 | 308 | }, $parsedSql['SELECT']); |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | |
50 | 50 | // Let's compute the COUNT. |
51 | 51 | $pkColumnNames = $this->tdbmService->getPrimaryKeyColumns($this->mainTable); |
52 | - $pkColumnNames = array_map(function ($pkColumn) use ($mySqlPlatform) { |
|
52 | + $pkColumnNames = array_map(function($pkColumn) use ($mySqlPlatform) { |
|
53 | 53 | return $mySqlPlatform->quoteIdentifier($this->mainTable).'.'.$mySqlPlatform->quoteIdentifier($pkColumn); |
54 | 54 | }, $pkColumnNames); |
55 | 55 | |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | */ |
114 | 114 | private function getParentRelationshipForeignKeys(string $tableName): array |
115 | 115 | { |
116 | - return $this->fromCache($this->cachePrefix.'_parentrelationshipfks_'.$tableName, function () use ($tableName) { |
|
116 | + return $this->fromCache($this->cachePrefix.'_parentrelationshipfks_'.$tableName, function() use ($tableName) { |
|
117 | 117 | return $this->getParentRelationshipForeignKeysWithoutCache($tableName); |
118 | 118 | }); |
119 | 119 | } |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | */ |
143 | 143 | private function getChildrenRelationshipForeignKeys(string $tableName) : array |
144 | 144 | { |
145 | - return $this->fromCache($this->cachePrefix.'_childrenrelationshipfks_'.$tableName, function () use ($tableName) { |
|
145 | + return $this->fromCache($this->cachePrefix.'_childrenrelationshipfks_'.$tableName, function() use ($tableName) { |
|
146 | 146 | return $this->getChildrenRelationshipForeignKeysWithoutCache($tableName); |
147 | 147 | }); |
148 | 148 | } |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | $children = $this->schemaAnalyzer->getChildrenRelationships($tableName); |
158 | 158 | |
159 | 159 | if (!empty($children)) { |
160 | - $fksTables = array_map(function (ForeignKeyConstraint $fk) { |
|
160 | + $fksTables = array_map(function(ForeignKeyConstraint $fk) { |
|
161 | 161 | return $this->getChildrenRelationshipForeignKeys($fk->getLocalTableName()); |
162 | 162 | }, $children); |
163 | 163 |
@@ -207,7 +207,7 @@ |
||
207 | 207 | if (strlen($alias) <= 30) { // Older oracle version had a limit of 30 characters for identifiers |
208 | 208 | return $alias; |
209 | 209 | } |
210 | - return substr($columnName, 0, 20) . crc32($tableName.'____'.$columnName); |
|
210 | + return substr($columnName, 0, 20).crc32($tableName.'____'.$columnName); |
|
211 | 211 | } |
212 | 212 | |
213 | 213 | abstract protected function compute(): void; |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | */ |
85 | 85 | public static function createResultIterator(QueryFactory $queryFactory, array $parameters, ObjectStorageInterface $objectStorage, ?string $className, TDBMService $tdbmService, MagicQuery $magicQuery, int $mode, LoggerInterface $logger): self |
86 | 86 | { |
87 | - $iterator = new static(); |
|
87 | + $iterator = new static(); |
|
88 | 88 | if ($mode !== TDBMService::MODE_CURSOR && $mode !== TDBMService::MODE_ARRAY) { |
89 | 89 | throw new TDBMException("Unknown fetch mode: '".$mode."'"); |
90 | 90 | } |
@@ -281,7 +281,7 @@ discard block |
||
281 | 281 | */ |
282 | 282 | public function jsonSerialize($stopRecursion = false) |
283 | 283 | { |
284 | - return array_map(function (AbstractTDBMObject $item) use ($stopRecursion) { |
|
284 | + return array_map(function(AbstractTDBMObject $item) use ($stopRecursion) { |
|
285 | 285 | return $item->jsonSerialize($stopRecursion); |
286 | 286 | }, $this->toArray()); |
287 | 287 | } |
@@ -142,7 +142,7 @@ |
||
142 | 142 | public function getIncomingForeignKeys(string $tableName): array |
143 | 143 | { |
144 | 144 | $junctionTables = $this->schemaAnalyzer->detectJunctionTables(true); |
145 | - $junctionTableNames = array_map(function (Table $table) { |
|
145 | + $junctionTableNames = array_map(function(Table $table) { |
|
146 | 146 | return $table->getName(); |
147 | 147 | }, $junctionTables); |
148 | 148 | $childrenRelationships = $this->schemaAnalyzer->getChildrenRelationships($tableName); |