@@ -270,7 +270,7 @@ discard block |
||
| 270 | 270 | * @param string $name |
| 271 | 271 | * @param iterable $operationsAndArgs |
| 272 | 272 | * |
| 273 | - * @return iterable |
|
| 273 | + * @return \Generator |
|
| 274 | 274 | */ |
| 275 | 275 | private function getValidatedOperationsAndArguments( |
| 276 | 276 | int $blockIndex, |
@@ -287,7 +287,7 @@ discard block |
||
| 287 | 287 | * @param string $name |
| 288 | 288 | * @param iterable $arguments |
| 289 | 289 | * |
| 290 | - * @return iterable |
|
| 290 | + * @return \Generator |
|
| 291 | 291 | */ |
| 292 | 292 | private function getValidatedArguments(int $blockIndex, string $name, iterable $arguments): iterable |
| 293 | 293 | { |
@@ -378,7 +378,7 @@ |
||
| 378 | 378 | /** |
| 379 | 379 | * @return int[]|null |
| 380 | 380 | */ |
| 381 | - private function getAttributeRules(): ?array |
|
| 381 | + private function getAttributeRules(): ? array |
|
| 382 | 382 | { |
| 383 | 383 | return $this->attributeRules; |
| 384 | 384 | } |
@@ -245,7 +245,7 @@ discard block |
||
| 245 | 245 | public function getMappedIncludes(): iterable |
| 246 | 246 | { |
| 247 | 247 | $fromScheme = $this->getRootScheme(); |
| 248 | - $getMappedRelLinks = function (iterable $links) use ($fromScheme) : iterable { |
|
| 248 | + $getMappedRelLinks = function(iterable $links) use ($fromScheme) : iterable { |
|
| 249 | 249 | foreach ($links as $link) { |
| 250 | 250 | assert(is_string($link)); |
| 251 | 251 | $fromSchemaClass = get_class($fromScheme); |
@@ -289,14 +289,14 @@ discard block |
||
| 289 | 289 | // ['rel2_name1', ], |
| 290 | 290 | // ['rel3_name1', 'rel3_name2', 'rel3_name3', ], |
| 291 | 291 | // ] |
| 292 | - $includeAsModelNames = function (iterable $relationships): iterable { |
|
| 292 | + $includeAsModelNames = function(iterable $relationships): iterable { |
|
| 293 | 293 | foreach ($relationships as $relationship) { |
| 294 | 294 | assert($relationship instanceof RelationshipInterface); |
| 295 | 295 | yield $relationship->getNameInModel(); |
| 296 | 296 | } |
| 297 | 297 | }; |
| 298 | 298 | $mappedIncludes = $this->getMappedIncludes(); |
| 299 | - $getIncludes = function () use ($mappedIncludes, $includeAsModelNames) : iterable { |
|
| 299 | + $getIncludes = function() use ($mappedIncludes, $includeAsModelNames) : iterable { |
|
| 300 | 300 | foreach ($mappedIncludes as $relationships) { |
| 301 | 301 | yield $includeAsModelNames($relationships); |
| 302 | 302 | } |
@@ -54,22 +54,22 @@ discard block |
||
| 54 | 54 | |
| 55 | 55 | $container[FactoryInterface::class] = $factory; |
| 56 | 56 | |
| 57 | - $container[JsonSchemesInterface::class] = function (PsrContainerInterface $container) use ($factory) { |
|
| 57 | + $container[JsonSchemesInterface::class] = function(PsrContainerInterface $container) use ($factory) { |
|
| 58 | 58 | $settings = $container->get(SettingsProviderInterface::class)->get(FluteSettings::class); |
| 59 | 59 | $modelSchemes = $container->get(ModelSchemeInfoInterface::class); |
| 60 | 60 | |
| 61 | 61 | return $factory->createJsonSchemes($settings[FluteSettings::KEY_MODEL_TO_SCHEME_MAP], $modelSchemes); |
| 62 | 62 | }; |
| 63 | 63 | |
| 64 | - $container[QueryParserInterface::class] = function (PsrContainerInterface $container) { |
|
| 64 | + $container[QueryParserInterface::class] = function(PsrContainerInterface $container) { |
|
| 65 | 65 | return new QueryParser($container->get(PaginationStrategyInterface::class)); |
| 66 | 66 | }; |
| 67 | 67 | |
| 68 | - $container[ParametersMapperInterface::class] = function (PsrContainerInterface $container) { |
|
| 68 | + $container[ParametersMapperInterface::class] = function(PsrContainerInterface $container) { |
|
| 69 | 69 | return new ParametersMapper($container->get(JsonSchemesInterface::class)); |
| 70 | 70 | }; |
| 71 | 71 | |
| 72 | - $container[EncoderInterface::class] = function (PsrContainerInterface $container) use ($factory) { |
|
| 72 | + $container[EncoderInterface::class] = function(PsrContainerInterface $container) use ($factory) { |
|
| 73 | 73 | /** @var JsonSchemesInterface $jsonSchemes */ |
| 74 | 74 | $jsonSchemes = $container->get(JsonSchemesInterface::class); |
| 75 | 75 | $settings = $container->get(SettingsProviderInterface::class)->get(FluteSettings::class); |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | return $encoder; |
| 85 | 85 | }; |
| 86 | 86 | |
| 87 | - $container[PaginationStrategyInterface::class] = function (PsrContainerInterface $container) { |
|
| 87 | + $container[PaginationStrategyInterface::class] = function(PsrContainerInterface $container) { |
|
| 88 | 88 | $settings = $container->get(SettingsProviderInterface::class)->get(FluteSettings::class); |
| 89 | 89 | |
| 90 | 90 | return new PaginationStrategy( |
@@ -93,19 +93,19 @@ discard block |
||
| 93 | 93 | ); |
| 94 | 94 | }; |
| 95 | 95 | |
| 96 | - $container[JsonApiValidatorFactoryInterface::class] = function (PsrContainerInterface $container) { |
|
| 96 | + $container[JsonApiValidatorFactoryInterface::class] = function(PsrContainerInterface $container) { |
|
| 97 | 97 | $factory = new JsonApiValidatorFactory($container); |
| 98 | 98 | |
| 99 | 99 | return $factory; |
| 100 | 100 | }; |
| 101 | 101 | |
| 102 | - $container[FormValidatorFactoryInterface::class] = function (PsrContainerInterface $container) { |
|
| 102 | + $container[FormValidatorFactoryInterface::class] = function(PsrContainerInterface $container) { |
|
| 103 | 103 | $factory = new FormValidatorFactory($container); |
| 104 | 104 | |
| 105 | 105 | return $factory; |
| 106 | 106 | }; |
| 107 | 107 | |
| 108 | - $container[QueryValidatorFactoryInterface::class] = function (PsrContainerInterface $container) { |
|
| 108 | + $container[QueryValidatorFactoryInterface::class] = function(PsrContainerInterface $container) { |
|
| 109 | 109 | /** @var PaginationStrategyInterface $paginationStrategy */ |
| 110 | 110 | $paginationStrategy = $container->get(PaginationStrategyInterface::class); |
| 111 | 111 | $settings = $container->get(SettingsProviderInterface::class)->get(FluteSettings::class); |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | */ |
| 138 | 138 | public static function configureExceptionHandler(LimoncelloContainerInterface $container) |
| 139 | 139 | { |
| 140 | - $container[ThrowableHandlerInterface::class] = function (PsrContainerInterface $container) { |
|
| 140 | + $container[ThrowableHandlerInterface::class] = function(PsrContainerInterface $container) { |
|
| 141 | 141 | /** @var CacheSettingsProviderInterface $provider */ |
| 142 | 142 | $provider = $container->get(CacheSettingsProviderInterface::class); |
| 143 | 143 | $appConfig = $provider->getApplicationConfiguration(); |
@@ -147,10 +147,10 @@ |
||
| 147 | 147 | ); |
| 148 | 148 | assert(empty($queryValFileMask) === false, "Invalid Query Validators file mask `$queryValFileMask`."); |
| 149 | 149 | |
| 150 | - $schemesPath = $schemesFolder . DIRECTORY_SEPARATOR . $schemesFileMask; |
|
| 151 | - $jsonValidatorsPath = $jsonValFolder . DIRECTORY_SEPARATOR . $jsonValFileMask; |
|
| 152 | - $formsValidatorsPath = $formsValFolder . DIRECTORY_SEPARATOR . $formsValFileMask; |
|
| 153 | - $queryValidatorsPath = $queryValFolder . DIRECTORY_SEPARATOR . $queryValFileMask; |
|
| 150 | + $schemesPath = $schemesFolder.DIRECTORY_SEPARATOR.$schemesFileMask; |
|
| 151 | + $jsonValidatorsPath = $jsonValFolder.DIRECTORY_SEPARATOR.$jsonValFileMask; |
|
| 152 | + $formsValidatorsPath = $formsValFolder.DIRECTORY_SEPARATOR.$formsValFileMask; |
|
| 153 | + $queryValidatorsPath = $queryValFolder.DIRECTORY_SEPARATOR.$queryValFileMask; |
|
| 154 | 154 | |
| 155 | 155 | $requireUniqueTypes = $defaults[static::KEY_SCHEMES_REQUIRE_UNIQUE_TYPES] ?? true; |
| 156 | 156 | |
@@ -320,7 +320,7 @@ discard block |
||
| 320 | 320 | string $relationshipName, |
| 321 | 321 | iterable $relationshipFilters, |
| 322 | 322 | ?iterable $relationshipSorts |
| 323 | - ): self { |
|
| 323 | + ) : self { |
|
| 324 | 324 | $joinWith = $this->expr()->andX(); |
| 325 | 325 | |
| 326 | 326 | return $this->addRelationshipFiltersAndSorts( |
@@ -354,7 +354,7 @@ discard block |
||
| 354 | 354 | string $relationshipName, |
| 355 | 355 | iterable $relationshipFilters, |
| 356 | 356 | ?iterable $relationshipSorts |
| 357 | - ): self { |
|
| 357 | + ) : self { |
|
| 358 | 358 | $joinWith = $this->expr()->orX(); |
| 359 | 359 | |
| 360 | 360 | return $this->addRelationshipFiltersAndSorts( |
@@ -415,7 +415,7 @@ discard block |
||
| 415 | 415 | CompositeExpression $filterLink, |
| 416 | 416 | iterable $relationshipFilters, |
| 417 | 417 | ?iterable $relationshipSorts |
| 418 | - ): self { |
|
| 418 | + ) : self { |
|
| 419 | 419 | $relationshipType = $this->getModelSchemes()->getRelationshipType($this->getModelClass(), $relationshipName); |
| 420 | 420 | switch ($relationshipType) { |
| 421 | 421 | case RelationshipTypes::BELONGS_TO: |
@@ -488,7 +488,7 @@ discard block |
||
| 488 | 488 | CompositeExpression $filterLink, |
| 489 | 489 | iterable $relationshipFilters, |
| 490 | 490 | ?iterable $relationshipSorts |
| 491 | - ): self { |
|
| 491 | + ) : self { |
|
| 492 | 492 | $foreignKey = $this->getModelSchemes()->getForeignKey($this->getModelClass(), $relationshipName); |
| 493 | 493 | list($onePrimaryKey, $oneTable) = |
| 494 | 494 | $this->getModelSchemes()->getReversePrimaryKey($this->getModelClass(), $relationshipName); |
@@ -522,7 +522,7 @@ discard block |
||
| 522 | 522 | CompositeExpression $filterLink, |
| 523 | 523 | iterable $relationshipFilters, |
| 524 | 524 | ?iterable $relationshipSorts |
| 525 | - ): self { |
|
| 525 | + ) : self { |
|
| 526 | 526 | $primaryKey = $this->getModelSchemes()->getPrimaryKey($this->getModelClass()); |
| 527 | 527 | list($manyForeignKey, $manyTable) = |
| 528 | 528 | $this->getModelSchemes()->getReverseForeignKey($this->getModelClass(), $relationshipName); |
@@ -556,7 +556,7 @@ discard block |
||
| 556 | 556 | CompositeExpression $targetFilterLink, |
| 557 | 557 | iterable $relationshipFilters, |
| 558 | 558 | ?iterable $relationshipSorts |
| 559 | - ): self { |
|
| 559 | + ) : self { |
|
| 560 | 560 | $primaryKey = $this->getModelSchemes()->getPrimaryKey($this->getModelClass()); |
| 561 | 561 | list ($intermediateTable, $intermediatePk, $intermediateFk) = |
| 562 | 562 | $this->getModelSchemes()->getBelongsToManyRelationship($this->getModelClass(), $relationshipName); |
@@ -606,9 +606,9 @@ discard block |
||
| 606 | 606 | ?CompositeExpression $targetFilterLink, |
| 607 | 607 | ?iterable $targetFilterParams, |
| 608 | 608 | ?iterable $relationshipSorts |
| 609 | - ): string { |
|
| 609 | + ) : string { |
|
| 610 | 610 | $targetAlias = $this->createAlias($targetTable); |
| 611 | - $joinCondition = $this->buildColumnName($fromAlias, $fromColumn) . '=' . |
|
| 611 | + $joinCondition = $this->buildColumnName($fromAlias, $fromColumn).'='. |
|
| 612 | 612 | $this->buildColumnName($targetAlias, $targetColumn); |
| 613 | 613 | |
| 614 | 614 | $this->innerJoin( |
@@ -667,7 +667,7 @@ discard block |
||
| 667 | 667 | ?CompositeExpression $targetFilterLink, |
| 668 | 668 | ?iterable $targetFilterParams, |
| 669 | 669 | ?iterable $targetSortParams |
| 670 | - ): string { |
|
| 670 | + ) : string { |
|
| 671 | 671 | $intNoSorting = null; |
| 672 | 672 | $intAlias = $this->innerJoinOneTable( |
| 673 | 673 | $fromAlias, |
@@ -678,7 +678,7 @@ discard block |
||
| 678 | 678 | $intFilterParams, |
| 679 | 679 | $intNoSorting |
| 680 | 680 | ); |
| 681 | - $targetAlias = $this->innerJoinOneTable( |
|
| 681 | + $targetAlias = $this->innerJoinOneTable( |
|
| 682 | 682 | $intAlias, |
| 683 | 683 | $intToTargetColumn, |
| 684 | 684 | $targetTable, |
@@ -698,7 +698,7 @@ discard block |
||
| 698 | 698 | */ |
| 699 | 699 | private function createAlias(string $tableName): string |
| 700 | 700 | { |
| 701 | - $alias = $tableName . (++$this->aliasIdCounter); |
|
| 701 | + $alias = $tableName.(++$this->aliasIdCounter); |
|
| 702 | 702 | $this->knownAliases[$tableName] = $alias; |
| 703 | 703 | |
| 704 | 704 | return $alias; |
@@ -876,7 +876,7 @@ discard block |
||
| 876 | 876 | if ($this->dtToDbConverter === null) { |
| 877 | 877 | $type = Type::getType(DateTimeType::DATETIME); |
| 878 | 878 | $platform = $this->getConnection()->getDatabasePlatform(); |
| 879 | - $this->dtToDbConverter = function (DateTimeInterface $dateTime) use ($type, $platform) : string { |
|
| 879 | + $this->dtToDbConverter = function(DateTimeInterface $dateTime) use ($type, $platform) : string { |
|
| 880 | 880 | return $type->convertToDatabaseValue($dateTime, $platform); |
| 881 | 881 | }; |
| 882 | 882 | } |
@@ -902,7 +902,7 @@ discard block |
||
| 902 | 902 | } else { |
| 903 | 903 | assert( |
| 904 | 904 | $value !== null, |
| 905 | - 'It seems you are trying to use `null` with =, >, <, or etc operator. ' . |
|
| 905 | + 'It seems you are trying to use `null` with =, >, <, or etc operator. '. |
|
| 906 | 906 | 'Use `is null` or `not null` instead.' |
| 907 | 907 | ); |
| 908 | 908 | assert(is_string($value), "Only strings, booleans and integers are supported."); |
@@ -741,9 +741,9 @@ discard block |
||
| 741 | 741 | } |
| 742 | 742 | |
| 743 | 743 | /** |
| 744 | - * @param iterable $paths (string[]) |
|
| 744 | + * @param iterable|null $paths (string[]) |
|
| 745 | 745 | * |
| 746 | - * @return iterable |
|
| 746 | + * @return Generator |
|
| 747 | 747 | */ |
| 748 | 748 | private static function getPaths(iterable $paths): iterable |
| 749 | 749 | { |
@@ -1331,7 +1331,7 @@ discard block |
||
| 1331 | 1331 | * @param string $modelClass |
| 1332 | 1332 | * @param string $keyColumnName |
| 1333 | 1333 | * |
| 1334 | - * @return iterable |
|
| 1334 | + * @return Generator |
|
| 1335 | 1335 | */ |
| 1336 | 1336 | private function fetchResourcesWithoutRelationships( |
| 1337 | 1337 | QueryBuilder $builder, |
@@ -1425,7 +1425,7 @@ discard block |
||
| 1425 | 1425 | * @param null|string $index |
| 1426 | 1426 | * @param iterable $attributes |
| 1427 | 1427 | * |
| 1428 | - * @return iterable |
|
| 1428 | + * @return Generator |
|
| 1429 | 1429 | */ |
| 1430 | 1430 | protected function filterAttributesOnCreate(?string $index, iterable $attributes): iterable |
| 1431 | 1431 | { |
@@ -1445,7 +1445,7 @@ discard block |
||
| 1445 | 1445 | /** |
| 1446 | 1446 | * @param iterable $attributes |
| 1447 | 1447 | * |
| 1448 | - * @return iterable |
|
| 1448 | + * @return Generator |
|
| 1449 | 1449 | */ |
| 1450 | 1450 | protected function filterAttributesOnUpdate(iterable $attributes): iterable |
| 1451 | 1451 | { |
@@ -1634,10 +1634,10 @@ discard block |
||
| 1634 | 1634 | |
| 1635 | 1635 | /** |
| 1636 | 1636 | * @param iterable $attributes |
| 1637 | - * @param array $typeNames |
|
| 1637 | + * @param Type[] $typeNames |
|
| 1638 | 1638 | * @param AbstractPlatform $platform |
| 1639 | 1639 | * |
| 1640 | - * @return iterable |
|
| 1640 | + * @return Generator |
|
| 1641 | 1641 | */ |
| 1642 | 1642 | private function readTypedAttributes(iterable $attributes, array $typeNames, AbstractPlatform $platform): iterable |
| 1643 | 1643 | { |
@@ -673,7 +673,7 @@ discard block |
||
| 673 | 673 | $classAtPath = new ArrayObject(); |
| 674 | 674 | $idsAtPath = new ArrayObject(); |
| 675 | 675 | |
| 676 | - $registerModelAtRoot = function ($model) use ($modelStorage, $modelsAtPath, $idsAtPath): void { |
|
| 676 | + $registerModelAtRoot = function($model) use ($modelStorage, $modelsAtPath, $idsAtPath): void { |
|
| 677 | 677 | self::registerModelAtPath( |
| 678 | 678 | $model, |
| 679 | 679 | static::ROOT_PATH, |
@@ -761,7 +761,7 @@ discard block |
||
| 761 | 761 | assert(is_string($pathPiece)); |
| 762 | 762 | $parent = $tmpPath; |
| 763 | 763 | $tmpPath = empty($tmpPath) === true ? |
| 764 | - $pathPiece : $tmpPath . static::PATH_SEPARATOR . $pathPiece; |
|
| 764 | + $pathPiece : $tmpPath.static::PATH_SEPARATOR.$pathPiece; |
|
| 765 | 765 | $normalizedPaths[$tmpPath] = [$parent, $pathPiece]; |
| 766 | 766 | $pathsDepths[$parent] = $parentDepth++; |
| 767 | 767 | } |
@@ -933,8 +933,7 @@ discard block |
||
| 933 | 933 | $filters = $this->getFilters(); |
| 934 | 934 | $sorts = $this->getSorts(); |
| 935 | 935 | $this->areFiltersWithAnd() ? |
| 936 | - $builder->addRelationshipFiltersAndSortsWithAnd($reverseRelName, $filters, $sorts) : |
|
| 937 | - $builder->addRelationshipFiltersAndSortsWithOr($reverseRelName, $filters, $sorts); |
|
| 936 | + $builder->addRelationshipFiltersAndSortsWithAnd($reverseRelName, $filters, $sorts) : $builder->addRelationshipFiltersAndSortsWithOr($reverseRelName, $filters, $sorts); |
|
| 938 | 937 | } |
| 939 | 938 | // ... and the input filters to actual data we select |
| 940 | 939 | if ($relationshipFilters !== null) { |
@@ -1053,7 +1052,7 @@ discard block |
||
| 1053 | 1052 | |
| 1054 | 1053 | $this->clearFetchParameters(); |
| 1055 | 1054 | |
| 1056 | - return (int)$deleted; |
|
| 1055 | + return (int) $deleted; |
|
| 1057 | 1056 | } |
| 1058 | 1057 | |
| 1059 | 1058 | /** |
@@ -1067,7 +1066,7 @@ discard block |
||
| 1067 | 1066 | |
| 1068 | 1067 | $this->clearFetchParameters(); |
| 1069 | 1068 | |
| 1070 | - return (int)$deleted > 0; |
|
| 1069 | + return (int) $deleted > 0; |
|
| 1071 | 1070 | } |
| 1072 | 1071 | |
| 1073 | 1072 | /** |
@@ -1088,7 +1087,7 @@ discard block |
||
| 1088 | 1087 | |
| 1089 | 1088 | $this->clearBuilderParameters()->clearFetchParameters(); |
| 1090 | 1089 | |
| 1091 | - $this->inTransaction(function () use ($saveMain, $toMany, &$index) { |
|
| 1090 | + $this->inTransaction(function() use ($saveMain, $toMany, &$index) { |
|
| 1092 | 1091 | $saveMain->execute(); |
| 1093 | 1092 | |
| 1094 | 1093 | // if no index given will use last insert ID as index |
@@ -1104,7 +1103,7 @@ discard block |
||
| 1104 | 1103 | ->prepareCreateInToManyRelationship($relationshipName, $index, $secondaryIdBindName) |
| 1105 | 1104 | ); |
| 1106 | 1105 | foreach ($secondaryIds as $secondaryId) { |
| 1107 | - $inserted += (int)$saveToMany->setParameter($secondaryIdBindName, $secondaryId)->execute(); |
|
| 1106 | + $inserted += (int) $saveToMany->setParameter($secondaryIdBindName, $secondaryId)->execute(); |
|
| 1108 | 1107 | } |
| 1109 | 1108 | } |
| 1110 | 1109 | }); |
@@ -1133,12 +1132,12 @@ discard block |
||
| 1133 | 1132 | ->createBuilder($this->getModelClass()) |
| 1134 | 1133 | ->updateModels($allowedChanges) |
| 1135 | 1134 | ->addFiltersWithAndToTable($filters); |
| 1136 | - $saveMain = $this->builderSaveResourceOnUpdate($saveMain); |
|
| 1135 | + $saveMain = $this->builderSaveResourceOnUpdate($saveMain); |
|
| 1137 | 1136 | $saveMain->getSQL(); // prepare |
| 1138 | 1137 | |
| 1139 | 1138 | $this->clearBuilderParameters()->clearFetchParameters(); |
| 1140 | 1139 | |
| 1141 | - $this->inTransaction(function () use ($saveMain, $toMany, $index, &$updated) { |
|
| 1140 | + $this->inTransaction(function() use ($saveMain, $toMany, $index, &$updated) { |
|
| 1142 | 1141 | $updated = $saveMain->execute(); |
| 1143 | 1142 | |
| 1144 | 1143 | foreach ($toMany as $relationshipName => $secondaryIds) { |
@@ -1158,12 +1157,12 @@ discard block |
||
| 1158 | 1157 | ->prepareCreateInToManyRelationship($relationshipName, $index, $secondaryIdBindName) |
| 1159 | 1158 | ); |
| 1160 | 1159 | foreach ($secondaryIds as $secondaryId) { |
| 1161 | - $updated += (int)$saveToMany->setParameter($secondaryIdBindName, $secondaryId)->execute(); |
|
| 1160 | + $updated += (int) $saveToMany->setParameter($secondaryIdBindName, $secondaryId)->execute(); |
|
| 1162 | 1161 | } |
| 1163 | 1162 | } |
| 1164 | 1163 | }); |
| 1165 | 1164 | |
| 1166 | - return (int)$updated; |
|
| 1165 | + return (int) $updated; |
|
| 1167 | 1166 | } |
| 1168 | 1167 | |
| 1169 | 1168 | /** |
@@ -1247,7 +1246,7 @@ discard block |
||
| 1247 | 1246 | /** |
| 1248 | 1247 | * @inheritdoc |
| 1249 | 1248 | */ |
| 1250 | - public function fetchRow(QueryBuilder $builder, string $modelClass): ?array |
|
| 1249 | + public function fetchRow(QueryBuilder $builder, string $modelClass): ? array |
|
| 1251 | 1250 | { |
| 1252 | 1251 | $model = null; |
| 1253 | 1252 | |
@@ -1427,7 +1426,7 @@ discard block |
||
| 1427 | 1426 | * |
| 1428 | 1427 | * @return iterable |
| 1429 | 1428 | */ |
| 1430 | - protected function filterAttributesOnCreate(?string $index, iterable $attributes): iterable |
|
| 1429 | + protected function filterAttributesOnCreate(?string $index, iterable $attributes) : iterable |
|
| 1431 | 1430 | { |
| 1432 | 1431 | if ($index !== null) { |
| 1433 | 1432 | $pkName = $this->getModelSchemes()->getPrimaryKey($this->getModelClass()); |
@@ -1487,7 +1486,7 @@ discard block |
||
| 1487 | 1486 | |
| 1488 | 1487 | $pkName = $this->getModelSchemes()->getPrimaryKey($parentClass); |
| 1489 | 1488 | |
| 1490 | - $registerModelAtPath = function ($model, string $path) use ($deDup, $modelsAtPath, $idsAtPath) { |
|
| 1489 | + $registerModelAtPath = function($model, string $path) use ($deDup, $modelsAtPath, $idsAtPath) { |
|
| 1491 | 1490 | return self::registerModelAtPath( |
| 1492 | 1491 | $model, |
| 1493 | 1492 | $path, |
@@ -1499,7 +1498,7 @@ discard block |
||
| 1499 | 1498 | }; |
| 1500 | 1499 | |
| 1501 | 1500 | foreach ($childRelationships as $name) { |
| 1502 | - $childrenPath = $parentsPath !== static::ROOT_PATH ? $parentsPath . static::PATH_SEPARATOR . $name : $name; |
|
| 1501 | + $childrenPath = $parentsPath !== static::ROOT_PATH ? $parentsPath.static::PATH_SEPARATOR.$name : $name; |
|
| 1503 | 1502 | |
| 1504 | 1503 | $relationshipType = $this->getModelSchemes()->getRelationshipType($parentClass, $name); |
| 1505 | 1504 | list ($targetModelClass, $reverseRelName) = |
@@ -1549,7 +1548,7 @@ discard block |
||
| 1549 | 1548 | [$pkName => [FilterParameterInterface::OPERATION_EQUALS => [$parent->{$pkName}]]], |
| 1550 | 1549 | [] |
| 1551 | 1550 | ); |
| 1552 | - $children = $this->fetchPaginatedResourcesWithoutRelationships( |
|
| 1551 | + $children = $this->fetchPaginatedResourcesWithoutRelationships( |
|
| 1553 | 1552 | $clonedBuilder, |
| 1554 | 1553 | $clonedBuilder->getModelClass() |
| 1555 | 1554 | ); |