@@ -99,7 +99,7 @@ |
||
| 99 | 99 | $details = null; |
| 100 | 100 | if ($this->isDebug === true) { |
| 101 | 101 | $message = $throwable->getMessage(); |
| 102 | - $details = (string)$throwable; |
|
| 102 | + $details = (string) $throwable; |
|
| 103 | 103 | } |
| 104 | 104 | $errors->add(new Error(null, null, $httpCode, null, $message, $details)); |
| 105 | 105 | } |
@@ -639,7 +639,7 @@ discard block |
||
| 639 | 639 | string $targetColumn |
| 640 | 640 | ): string { |
| 641 | 641 | $targetAlias = $this->createAlias($targetTable); |
| 642 | - $joinCondition = $this->buildColumnName($fromAlias, $fromColumn) . '=' . |
|
| 642 | + $joinCondition = $this->buildColumnName($fromAlias, $fromColumn).'='. |
|
| 643 | 643 | $this->buildColumnName($targetAlias, $targetColumn); |
| 644 | 644 | |
| 645 | 645 | $this->innerJoin( |
@@ -685,7 +685,7 @@ discard block |
||
| 685 | 685 | */ |
| 686 | 686 | private function createAlias(string $tableName): string |
| 687 | 687 | { |
| 688 | - $alias = $tableName . (++$this->aliasIdCounter); |
|
| 688 | + $alias = $tableName.(++$this->aliasIdCounter); |
|
| 689 | 689 | $this->knownAliases[$tableName] = $alias; |
| 690 | 690 | |
| 691 | 691 | return $alias; |
@@ -850,7 +850,7 @@ discard block |
||
| 850 | 850 | } else { |
| 851 | 851 | assert( |
| 852 | 852 | $value !== null, |
| 853 | - 'It seems you are trying to use `null` with =, >, <, or etc operator. ' . |
|
| 853 | + 'It seems you are trying to use `null` with =, >, <, or etc operator. '. |
|
| 854 | 854 | 'Use `is null` or `not null` instead.' |
| 855 | 855 | ); |
| 856 | 856 | assert(is_string($value), "Only strings, booleans and integers are supported."); |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | |
| 126 | 126 | parse_str($this->getOriginalUri()->getQuery(), $queryParams); |
| 127 | 127 | |
| 128 | - return function ($offset) use ($pageSize, $queryParams) { |
|
| 128 | + return function($offset) use ($pageSize, $queryParams) { |
|
| 129 | 129 | $paramsWithPaging = array_merge($queryParams, [ |
| 130 | 130 | BaseQueryParserInterface::PARAM_PAGE => [ |
| 131 | 131 | JsonApiQueryValidatingParserInterface::PARAM_PAGING_OFFSET => $offset, |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | ], |
| 134 | 134 | ]); |
| 135 | 135 | $newUri = $this->getOriginalUri()->withQuery(http_build_query($paramsWithPaging)); |
| 136 | - $fullUrl = (string)$newUri; |
|
| 136 | + $fullUrl = (string) $newUri; |
|
| 137 | 137 | $link = $this->getFactory()->createLink($fullUrl, null, true); |
| 138 | 138 | |
| 139 | 139 | return $link; |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | ) { |
| 156 | 156 | assert( |
| 157 | 157 | in_array(JsonApiQueryRulesSerializerInterface::class, class_implements($serializerClass)), |
| 158 | - "`$serializerClass` should implement interface `" . JsonApiQueryRulesSerializerInterface::class . '`.' |
|
| 158 | + "`$serializerClass` should implement interface `".JsonApiQueryRulesSerializerInterface::class.'`.' |
|
| 159 | 159 | ); |
| 160 | 160 | |
| 161 | 161 | $parameters = []; |
@@ -571,7 +571,7 @@ discard block |
||
| 571 | 571 | { |
| 572 | 572 | // no validation rule means we should accept any input value |
| 573 | 573 | if ($ruleIndexes === null) { |
| 574 | - return is_numeric($value) === true ? (int)$value : 0; |
|
| 574 | + return is_numeric($value) === true ? (int) $value : 0; |
|
| 575 | 575 | } |
| 576 | 576 | |
| 577 | 577 | $ruleIndex = $this->serializerClass::readRuleMainIndex($ruleIndexes); |
@@ -582,7 +582,7 @@ discard block |
||
| 582 | 582 | |
| 583 | 583 | $validatedValue = $this->readSingleCapturedValue(); |
| 584 | 584 | |
| 585 | - return (int)$validatedValue; |
|
| 585 | + return (int) $validatedValue; |
|
| 586 | 586 | } |
| 587 | 587 | |
| 588 | 588 | /** |
@@ -212,12 +212,12 @@ |
||
| 212 | 212 | return [static::DATA => $data->getData()]; |
| 213 | 213 | } |
| 214 | 214 | |
| 215 | - $buildUrl = function ($offset) use ($data, $uri) { |
|
| 215 | + $buildUrl = function($offset) use ($data, $uri) { |
|
| 216 | 216 | $paramsWithPaging = [ |
| 217 | 217 | JsonApiQueryValidatingParserInterface::PARAM_PAGING_OFFSET => $offset, |
| 218 | 218 | JsonApiQueryValidatingParserInterface::PARAM_PAGING_LIMIT => $data->getLimit(), |
| 219 | 219 | ]; |
| 220 | - $fullUrl = $uri . '?' . http_build_query($paramsWithPaging); |
|
| 220 | + $fullUrl = $uri.'?'.http_build_query($paramsWithPaging); |
|
| 221 | 221 | |
| 222 | 222 | return $fullUrl; |
| 223 | 223 | }; |
@@ -792,7 +792,7 @@ discard block |
||
| 792 | 792 | */ |
| 793 | 793 | private static function assertClassValueDefined(?string $value): void |
| 794 | 794 | { |
| 795 | - assert(empty($value) === false, 'Value should be defined in `' . static::class . '`.'); |
|
| 795 | + assert(empty($value) === false, 'Value should be defined in `'.static::class.'`.'); |
|
| 796 | 796 | } |
| 797 | 797 | |
| 798 | 798 | /** |
@@ -805,7 +805,7 @@ discard block |
||
| 805 | 805 | { |
| 806 | 806 | assert( |
| 807 | 807 | array_key_exists($interface, class_implements($class)) === true, |
| 808 | - "Class `$class` should implement `" . $interface . '` interface.' |
|
| 808 | + "Class `$class` should implement `".$interface.'` interface.' |
|
| 809 | 809 | ); |
| 810 | 810 | } |
| 811 | 811 | } |
@@ -246,7 +246,7 @@ discard block |
||
| 246 | 246 | public function getMappedIncludes(): iterable |
| 247 | 247 | { |
| 248 | 248 | $fromSchema = $this->getRootSchema(); |
| 249 | - $getMappedRelLinks = function (iterable $links) use ($fromSchema) : iterable { |
|
| 249 | + $getMappedRelLinks = function(iterable $links) use ($fromSchema) : iterable { |
|
| 250 | 250 | foreach ($links as $link) { |
| 251 | 251 | assert(is_string($link)); |
| 252 | 252 | $fromSchemaClass = get_class($fromSchema); |
@@ -296,14 +296,14 @@ discard block |
||
| 296 | 296 | // ['rel2_name1', ], |
| 297 | 297 | // ['rel3_name1', 'rel3_name2', 'rel3_name3', ], |
| 298 | 298 | // ] |
| 299 | - $includeAsModelNames = function (iterable $relationships): iterable { |
|
| 299 | + $includeAsModelNames = function(iterable $relationships): iterable { |
|
| 300 | 300 | foreach ($relationships as $relationship) { |
| 301 | 301 | assert($relationship instanceof RelationshipInterface); |
| 302 | 302 | yield $relationship->getNameInModel(); |
| 303 | 303 | } |
| 304 | 304 | }; |
| 305 | 305 | $mappedIncludes = $this->getMappedIncludes(); |
| 306 | - $getIncludes = function () use ($mappedIncludes, $includeAsModelNames) : iterable { |
|
| 306 | + $getIncludes = function() use ($mappedIncludes, $includeAsModelNames) : iterable { |
|
| 307 | 307 | foreach ($mappedIncludes as $relationships) { |
| 308 | 308 | yield $includeAsModelNames($relationships); |
| 309 | 309 | } |
@@ -48,18 +48,18 @@ discard block |
||
| 48 | 48 | |
| 49 | 49 | $container[FactoryInterface::class] = $factory; |
| 50 | 50 | |
| 51 | - $container[JsonSchemasInterface::class] = function (PsrContainerInterface $container) use ($factory) { |
|
| 51 | + $container[JsonSchemasInterface::class] = function(PsrContainerInterface $container) use ($factory) { |
|
| 52 | 52 | $settings = $container->get(SettingsProviderInterface::class)->get(FluteSettings::class); |
| 53 | 53 | $modelSchemas = $container->get(ModelSchemaInfoInterface::class); |
| 54 | 54 | |
| 55 | 55 | return $factory->createJsonSchemas($settings[FluteSettings::KEY_MODEL_TO_SCHEMA_MAP], $modelSchemas); |
| 56 | 56 | }; |
| 57 | 57 | |
| 58 | - $container[ParametersMapperInterface::class] = function (PsrContainerInterface $container) { |
|
| 58 | + $container[ParametersMapperInterface::class] = function(PsrContainerInterface $container) { |
|
| 59 | 59 | return new ParametersMapper($container->get(JsonSchemasInterface::class)); |
| 60 | 60 | }; |
| 61 | 61 | |
| 62 | - $container[EncoderInterface::class] = function (PsrContainerInterface $container) use ($factory) { |
|
| 62 | + $container[EncoderInterface::class] = function(PsrContainerInterface $container) use ($factory) { |
|
| 63 | 63 | /** @var JsonSchemasInterface $jsonSchemas */ |
| 64 | 64 | $jsonSchemas = $container->get(JsonSchemasInterface::class); |
| 65 | 65 | $settings = $container->get(SettingsProviderInterface::class)->get(FluteSettings::class); |
@@ -74,19 +74,19 @@ discard block |
||
| 74 | 74 | return $encoder; |
| 75 | 75 | }; |
| 76 | 76 | |
| 77 | - $container[RelationshipPaginationStrategyInterface::class] = function (PsrContainerInterface $container) { |
|
| 77 | + $container[RelationshipPaginationStrategyInterface::class] = function(PsrContainerInterface $container) { |
|
| 78 | 78 | $settings = $container->get(SettingsProviderInterface::class)->get(FluteSettings::class); |
| 79 | 79 | |
| 80 | 80 | return new BasicRelationshipPaginationStrategy($settings[FluteSettings::KEY_DEFAULT_PAGING_SIZE]); |
| 81 | 81 | }; |
| 82 | 82 | |
| 83 | - $container[JsonApiParserFactoryInterface::class] = function (PsrContainerInterface $container) { |
|
| 83 | + $container[JsonApiParserFactoryInterface::class] = function(PsrContainerInterface $container) { |
|
| 84 | 84 | $factory = new JsonApiParserFactory($container); |
| 85 | 85 | |
| 86 | 86 | return $factory; |
| 87 | 87 | }; |
| 88 | 88 | |
| 89 | - $container[FormValidatorFactoryInterface::class] = function (PsrContainerInterface $container) { |
|
| 89 | + $container[FormValidatorFactoryInterface::class] = function(PsrContainerInterface $container) { |
|
| 90 | 90 | $factory = new FormValidatorFactory($container); |
| 91 | 91 | |
| 92 | 92 | return $factory; |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | */ |
| 105 | 105 | public static function configureExceptionHandler(LimoncelloContainerInterface $container) |
| 106 | 106 | { |
| 107 | - $container[ThrowableHandlerInterface::class] = function (PsrContainerInterface $container) { |
|
| 107 | + $container[ThrowableHandlerInterface::class] = function(PsrContainerInterface $container) { |
|
| 108 | 108 | /** @var CacheSettingsProviderInterface $provider */ |
| 109 | 109 | $provider = $container->get(CacheSettingsProviderInterface::class); |
| 110 | 110 | $appConfig = $provider->getApplicationConfiguration(); |
@@ -111,10 +111,10 @@ |
||
| 111 | 111 | ); |
| 112 | 112 | assert(empty($jsonQueryValFileMask) === false, "Invalid Query Validators file mask `$jsonQueryValFileMask`."); |
| 113 | 113 | |
| 114 | - $schemasPath = $schemasFolder . DIRECTORY_SEPARATOR . $schemasFileMask; |
|
| 115 | - $jsonDataValPath = $jsonDataValFolder . DIRECTORY_SEPARATOR . $jsonDataValFileMask; |
|
| 116 | - $formsValidatorsPath = $formsValFolder . DIRECTORY_SEPARATOR . $formsValFileMask; |
|
| 117 | - $jsonQueryValPath = $jsonQueryValFolder . DIRECTORY_SEPARATOR . $jsonQueryValFileMask; |
|
| 114 | + $schemasPath = $schemasFolder.DIRECTORY_SEPARATOR.$schemasFileMask; |
|
| 115 | + $jsonDataValPath = $jsonDataValFolder.DIRECTORY_SEPARATOR.$jsonDataValFileMask; |
|
| 116 | + $formsValidatorsPath = $formsValFolder.DIRECTORY_SEPARATOR.$formsValFileMask; |
|
| 117 | + $jsonQueryValPath = $jsonQueryValFolder.DIRECTORY_SEPARATOR.$jsonQueryValFileMask; |
|
| 118 | 118 | |
| 119 | 119 | $requireUniqueTypes = $defaults[static::KEY_SCHEMAS_REQUIRE_UNIQUE_TYPES] ?? true; |
| 120 | 120 | |